Standard authentication via HTTP Basic Auth.
{username}-{params}:{password}@{host}:{port}
Credentials
| Component | Format |
|---|
| Username | sub_ + 8 chars |
| Password | 16 chars |
Examples
# Basic
curl -x "http://sub_xxx:[email protected]:1318" https://example.com
# With parameters
curl -x "http://sub_xxx-country-US:[email protected]:1318" https://example.com
# Multiple parameters
curl -x "http://sub_xxx-country-US-session-abc123:[email protected]:1318" https://example.com
Errors
All failures return 407 Proxy Authentication Required:
- Invalid username or password
- Expired subscription
- Exhausted traffic quota
Specific failure cause is not disclosed for security.