PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Http
/
Auth
/
Editing: DigestAuthenticator.php
<?php declare(strict_types=1); namespace Saloon\Http\Auth; use GuzzleHttp\RequestOptions; use Saloon\Http\PendingRequest; use Saloon\Contracts\Authenticator; use Saloon\Http\Senders\GuzzleSender; use Saloon\Exceptions\SaloonException; class DigestAuthenticator implements Authenticator { /** * Constructor */ public function __construct( public string $username, public string $password, public string $digest, ) { // } /** * Apply the authentication to the request. * * @throws \Saloon\Exceptions\SaloonException */ public function set(PendingRequest $pendingRequest): void { if (! $pendingRequest->getConnector()->sender() instanceof GuzzleSender) { throw new SaloonException('The DigestAuthenticator is only supported when using the GuzzleSender.'); } // Note: This authenticator is currently using Guzzle to power the // authentication. This will be replaced later in Saloon v3 with // a first-party implementation of digest authentication. // See: https://docs.guzzlephp.org/en/stable/request-options.html#auth $pendingRequest->config()->add(RequestOptions::AUTH, [$this->username, $this->password, $this->digest]); } }
SAVE
CANCEL