$_client
$_client : \Cake\Http\Client
Instance of Cake\Http\Client
Digest authentication adapter for Cake\Http\Client
Generally not directly constructed, but instead used by Cake\Http\Client when $options['auth']['type'] is 'digest'
$_client : \Cake\Http\Client
Instance of Cake\Http\Client
__construct(\Cake\Http\Client $client, array|null $options = null)
Constructor
\Cake\Http\Client | $client | Http client object. |
array|null | $options | Options list. |
authentication(\Cake\Http\Client\Request $request, array $credentials) : \Cake\Http\Client\Request
Add Authorization header to the request.
\Cake\Http\Client\Request | $request | The request object. |
array | $credentials | Authentication credentials. |
The updated request.
_getServerInfo(\Cake\Http\Client\Request $request, array $credentials) : array
Retrieve information about the authentication
Will get the realm and other tokens by performing another request without authentication to get authentication challenge.
\Cake\Http\Client\Request | $request | The request object. |
array | $credentials | Authentication credentials. |
modified credentials.
_generateHeader(\Cake\Http\Client\Request $request, array $credentials) : string
Generate the header Authorization
\Cake\Http\Client\Request | $request | The request object. |
array | $credentials | Authentication credentials. |
Loading…