407 代理身份验证要求

HTTP **407 Proxy Authentication Required** 客户端错误响应 状态码表示请求未成功,因为它缺少访问请求资源的代理服务器 的有效身份验证凭据。

此响应与一个包含如何正确验证请求信息的Proxy-Authenticate 标头一起发送。客户端可以重复带有新的或替换的Proxy-Authorization 标头字段的请求。

状态

http
407 Proxy Authentication Required

示例

代理身份验证

example.com/admin 发出 GET 请求

http
GET /admin HTTP/1.1
Host: example.com

在途中,一个中间人让客户端知道必须对客户端进行身份验证,并提供有关身份验证方案的信息

http
HTTP/1.1 407 Proxy Authentication Required
Date: Wed, 21 Oct 2015 07:28:00 GMT
Proxy-Authenticate: Basic realm="Access to internal site"

规范

规范
HTTP 语义
# status.407

另请参阅