public function Anonymous::getJsonApiClient in Entity Share 8.3
Prepares a guzzle client for JSON operations with the supported auth.
Parameters
string $url: The remote url.
Return value
\GuzzleHttp\Client The HTTP client.
Overrides ClientAuthorizationInterface::getJsonApiClient
File
- modules/
entity_share_client/ src/ Plugin/ ClientAuthorization/ Anonymous.php, line 51
Class
- Anonymous
- Provides Anonymous authorization.
Namespace
Drupal\entity_share_client\Plugin\ClientAuthorizationCode
public function getJsonApiClient($url) {
$options = [
'base_uri' => $url . '/',
'headers' => [
'Content-type' => 'application/vnd.api+json',
],
];
$credentials = $this->keyService
->getCredentials($this);
if (!empty($credentials['username']) && !empty($credentials['password'])) {
$options['auth'] = [
$credentials['username'],
$credentials['password'],
];
}
return $this->httpClientFactory
->fromOptions($options);
}