Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTTP headers | Proxy-Authenticate

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The HTTP Proxy-Authenticate is a response header gives access to a resource file by defining an authorization method. It allows the proxy server to transmit the request further by authenticating it. This header is sent along with 407 Proxy Authentication Required which indicates the inability to complete a request due to the lack of proper authorization credentials for the proxy server that is intercepting the request. 

Syntax: 

Proxy-Authenticate:<type> realm=<realm>

Directives: 

  • <type>: This value is just one of the authentication types.
  • realm=<realm>: This value is used give a description of protected area or the extent. A formatted host name is displayed if no realm is specified.

Examples: 

Proxy-Authenticate: Basic

The Basic authentication type accepts a username and password to validate the authentication. 

Proxy-Authenticate: Basic realm="Access to Geeksforgeeks website"

This gives access to the Geeksforgeeks website after accepting a username and password. 

Supported Browsers: The following browsers are compatible to HTTP Proxy-Authenticate header: 

  • Google Chrome
  • Firefox
  • Opera
My Personal Notes arrow_drop_up
Last Updated : 16 Oct, 2021
Like Article
Save Article
Similar Reads
Related Tutorials