Back to all status codes
407

Proxy Authentication Required

The client must first authenticate itself with the proxy.

Common Causes

  • Proxy server requires authentication
  • Corporate proxy settings
  • Missing proxy credentials

Fix Solutions

Configure proxy authentication

Add Proxy-Authorization header with valid credentials.

Code Examples

# Use proxy with authentication
curl -x http://proxy:8080 -U username:password https://example.com

Related Tools