HTTP 407 Proxy Authentication Required indicates the client must authenticate with the proxy before the request can be forwarded. The response includes a Proxy-Authenticate header specifying the authentication scheme required by the proxy.
407 Proxy Authentication RequiredGET /news/article HTTP/1.1
Host: www.example.com
User-Agent: Mozilla/5.0
Accept: text/htmlHTTP/1.1 407 Proxy Authentication Required
Content-Type: text/html; charset=utf-8
Proxy-Authenticate: Basic realm="Corporate Proxy"
Content-Length: 215
<!doctype html>
<html lang="en">
<head>
<title>407 Proxy Authentication Required</title>
</head>
<body>
<h1>Proxy Authentication Required</h1>
<p>You must authenticate with the proxy server before browsing the internet.</p>
</body>
</html>Configure your HTTP client or browser with the proxy username and password.
curl -x http://proxy:8080 --proxy-user username:password https://example.com/
Verify the proxy server address, port, and authentication method in your system or browser settings.
The organization's proxy server requires credentials before allowing internet access.
| Specification | Section |
|---|---|
| HTTP Semantics | RFC 9110 §15.5.8 |
This reference was compiled from official RFCs, protocol specifications, and hands-on troubleshooting experience. AI tools were used primarily for formatting and organizing the content on the page.