PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Http
/
OAuth2
/
Editing: GetRefreshTokenRequest.php
<?php declare(strict_types=1); namespace Saloon\Http\OAuth2; use Saloon\Enums\Method; use Saloon\Http\Request; use Saloon\Contracts\Body\HasBody; use Saloon\Traits\Body\HasFormBody; use Saloon\Helpers\OAuth2\OAuthConfig; use Saloon\Traits\Plugins\AcceptsJson; class GetRefreshTokenRequest extends Request implements HasBody { use HasFormBody; use AcceptsJson; /** * Define the method that the request will use. */ protected Method $method = Method::POST; /** * Define the endpoint for the request. */ public function resolveEndpoint(): string { return $this->oauthConfig->getTokenEndpoint(); } /** * Requires the authorization code and OAuth 2 config. */ public function __construct(protected OAuthConfig $oauthConfig, protected string $refreshToken) { // } /** * Register the default data. * * @return array{ * grant_type: string, * refresh_token: string, * client_id: string, * client_secret: string, * } */ public function defaultBody(): array { return [ 'grant_type' => 'refresh_token', 'refresh_token' => $this->refreshToken, 'client_id' => $this->oauthConfig->getClientId(), 'client_secret' => $this->oauthConfig->getClientSecret(), ]; } }
SAVE
CANCEL