--- title: Proxy-Authorization slug: Web/HTTP/Headers/Proxy-Authorization tags: - 请求首部 - 身份验证 - 首部 translation_of: Web/HTTP/Headers/Proxy-Authorization ---
Proxy-Authorization
是一个请求首部,其中包含了用户代理提供给代理服务器的用于身份验证的凭证。这个首部通常是在服务器返回了 {{HTTPStatus("407")}} Proxy Authentication Required
响应状态码及 {{HTTPHeader("Proxy-Authenticate")}} 首部后发送的。
Header type | {{Glossary("Request header")}} |
---|---|
{{Glossary("Forbidden header name")}} | no |
Proxy-Authorization: <type> <credentials>
注意: Base64 编码方式不是用来加密或者获取摘要的!这种方法的安全性相当于将凭证使用明文发送(base64 是一种可逆编码方式)。在使用基本身份验证方式的时候推荐与 HTTPS 搭配使用。
Proxy-Authorization: Basic YWxhZGRpbjpvcGVuc2VzYW1l
Specification | Title |
---|---|
{{RFC("7235", "Proxy-Authorization", "4.4")}} | HTTP/1.1: Authentication |
{{RFC("7617")}} | The 'Basic' HTTP Authentication Scheme |