public function Response::getProxyAuthenticate

Get the Proxy-Authenticate HTTP header

Return value

string|null Authentication to access the proxy (e.g. Basic)

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Message/Response.php, line 610

Class

Response
Guzzle HTTP response object

Namespace

Guzzle\Http\Message

Code

public function getProxyAuthenticate() {
  return $this
    ->getHeader('Proxy-Authenticate', true);
}