Abstract Class Yiisoft\Yii\AuthClient\OAuth2
OAuth2 serves as a client for the OAuth 2 flow.
See also:
Protected Properties
| Property | Type | Description | Defined By |
|---|---|---|---|
| $accessToken | array|Yiisoft\ |
Access token instance or its array configuration. | Yiisoft\ |
| $authParams | array | Additional auth GET params, merged into every {@see \ |
Yiisoft\ |
| $authUrl | string | Authorize URL. | Yiisoft\ |
| $autoRefreshAccessToken | boolean | Whether to automatically perform 'refresh access token' request on expired access token. | Yiisoft\ |
| $clientId | string | OAuth client ID. | Yiisoft\ |
| $clientSecret | string | OAuth client secret. | Yiisoft\ |
| $endpoint | string | API base URL. | Yiisoft\ |
| $environment | string | Environment identifier (e.g. 'dev' or 'prod'), for providers whose endpoint URLs differ by environment. | Yiisoft\ |
| $factory | \ |
Yiisoft\ |
|
| $httpClient | \ |
Yiisoft\ |
|
| $logo | string|null | SVG markup for the client's logo icon (e.g. brand glyph). | Yiisoft\ |
| $name | string | Custom name, set from the config array key. | Yiisoft\ |
| $normalizeUserAttributeMap | array | Map used to normalize user attributes fetched from external auth service in format: normalizedAttributeName => sourceSpecification 'sourceSpecification' can be: - string, raw attribute name - array, pass to raw attribute value - callable, PHP callback, which should accept array of raw attributes and return normalized value. | Yiisoft\ |
| $requestFactory | \ |
Yiisoft\ |
|
| $returnUrl | string | Yiisoft\ |
|
| $scope | string | String auth request scope. | Yiisoft\ |
| $session | \ |
Yiisoft\ |
|
| $title | string | Custom title, overrides the class default if set. | Yiisoft\ |
| $tokenUrl | string | Token request URL endpoint. | Yiisoft\ |
| $validateAuthState | boolean | Whether to use and validate auth 'state' parameter in authentication flow. | Yiisoft\ |
| $viewOptions | array | View options in format: optionName => optionValue | Yiisoft\ |
Public Methods
Protected Methods
| Method | Description | Defined By |
|---|---|---|
| applyClientCredentialsToRequest() | Applies client credentials (e.g. {@see clientId} and {@see clientSecret}) to the HTTP request instance. | Yiisoft\ |
| createToken() | Creates token from its configuration. | Yiisoft\ |
| createTokenRequest() | Builds a POST request to {@see tokenUrl} with $params as an application/x-www-form-urlencoded
body. RFC 6749 ยง4.1.3 requires token-endpoint parameters in the request body, not the URI query
string - a strict provider like Google rejects a query-string-only request outright (with no
usable access_token in its error response), while a lenient one like GitHub's legacy endpoint
happens to tolerate it. {@see applyClientCredentialsToRequest()} is expected to append further
params to this same body afterward, not build a request of its own. |
Yiisoft\ |
| defaultNormalizeUserAttributeMap() | Returns the default {@see normalizeUserAttributeMap} value. | Yiisoft\ |
| defaultReturnUrl() | Composes default {@see returnUrl} value. | Yiisoft\ |
| defaultViewOptions() | Returns the default {@see viewOptions} value. | Yiisoft\ |
| fetchCurrentUserJsonArray() | Fetches current user data as JSON array from the given endpoint, authenticating the request with
the access token as an Authorization header. |
Yiisoft\ |
| generateAuthState() | Generates the auth state value. | Yiisoft\ |
| generateAuthStateBaseString() | Builds the seed string used by {@see generateAuthState()}. Extracted into its own method so the seed's composition can be tested directly, since the final hashed/uniqid()-mixed auth state value is opaque and can't reveal how its input was assembled. | Yiisoft\ |
| getDefaultScope() | Yiisoft\ |
|
| getState() | Returns persistent state value. | Yiisoft\ |
| getStateKeyPrefix() | Returns session key prefix, which is used to store internal states. | Yiisoft\ |
| initUserAttributes() | Fetches the authenticated user's raw attribute data from the external auth provider. | Yiisoft\ |
| removeState() | Removes persistent state value. | Yiisoft\ |
| restoreAccessToken() | Restores access token. | Yiisoft\ |
| saveAccessToken() | Saves token as persistent state. | Yiisoft\ |
| sendRequest() | Yiisoft\ |
|
| setState() | Sets persistent state. | Yiisoft\ |
Property Details
Additional auth GET params, merged into every {@see \prompt or access_type) that should
always be applied without having to pass them at every call site.
Environment identifier (e.g. 'dev' or 'prod'), for providers whose endpoint URLs differ by environment. Unused by default; concrete clients may consult it when building URLs.
SVG markup for the client's logo icon (e.g. brand glyph).
If set, {@see \
Whether to use and validate auth 'state' parameter in authentication flow. If enabled - the opaque value will be generated and applied to auth URL to maintain state between the request and callback. The authorization server includes this value, when redirecting the user-agent back to the client. The option is used for preventing cross-site request forgery.
Method Details
BaseOAuth constructor.
| public mixed __construct ( \ | ||
| $httpClient | \ |
|
| $requestFactory | \ |
|
| $stateStorage | Yiisoft\ |
|
| $factory | \ |
|
| $session | \ |
|
public function __construct(
ClientInterface $httpClient,
RequestFactoryInterface $requestFactory,
StateStorageInterface $stateStorage,
protected YiisoftFactory $factory,
protected SessionInterface $session,
) {
parent::__construct($httpClient, $requestFactory, $stateStorage, $this->factory);
}
Defined in:
Yiisoft\
Performs request to the OAuth API returning response data.
You may use {@see \
See also createApiRequest().
| public array api ( string $apiSubUrl, string $method = 'GET', array|string $data = [], array $headers = [] ) | ||
| $apiSubUrl | string |
API sub URL, which will be append to {@see \ |
| $method | string |
Request method. |
| $data | array|string |
Request data or content. |
| $headers | array |
Additional request headers. |
| return | array |
API response data. |
|---|---|---|
| throws | Exception | |
public function api($apiSubUrl, $method = 'GET', $data = [], $headers = []): array
{
$request = $this->createApiRequest($method, $apiSubUrl);
$request = RequestUtil::addHeaders($request, $headers);
if (!empty($data)) {
if (is_array($data)) {
$request = RequestUtil::addParams($request, $data);
} else {
$request->getBody()->write($data);
}
}
$request = $this->beforeApiRequestSend($request);
$response = $this->sendRequest($request);
if ($response->getStatusCode() !== 200) {
throw new InvalidResponseException(
$response,
'Request failed with code: ' . $response->getStatusCode() . ', message: ' . $response->getBody(),
);
}
return (array) Json::decode($response->getBody()->getContents());
}
| public \ | ||
| $request | \ |
|
| $accessToken | Yiisoft\ |
|
public function applyAccessTokenToRequest(RequestInterface $request, OAuthToken $accessToken): RequestInterface
{
return RequestUtil::addParams(
$request,
[
'access_token' => $accessToken->getToken(),
],
);
}
Applies client credentials (e.g. {@see clientId} and {@see clientSecret}) to the HTTP request instance.
This method should be invoked before sending any HTTP request, which requires client credentials.
Assumes $request already carries a createTokenRequest()-built application/x-www-form-urlencoded
body - the credentials are appended to that body, not the URI query string, matching how every
caller of this method builds its request. Overrides (e.g. OpenIdConnect, which may instead add
an Authorization header for client_secret_basic) aren't bound by that assumption.
| protected \ | ||
| $request | \ |
HTTP request instance. |
protected function applyClientCredentialsToRequest(RequestInterface $request): RequestInterface
{
$request->getBody()->write('&' . http_build_query(
[
'client_id' => $this->clientId,
'client_secret' => $this->clientSecret,
],
arg_separator: '&',
encoding_type: PHP_QUERY_RFC3986,
));
return $request;
}
| public \ | ||
| $request | \ |
|
public function beforeApiRequestSend(RequestInterface $request): RequestInterface
{
$accessToken = $this->getAccessToken();
if (!is_object($accessToken) || !$accessToken->getIsValid()) {
throw new Exception('Invalid access token.');
}
return $this->applyAccessTokenToRequest($request, $accessToken);
}
Composes user authorization URL.
| public string buildAuthUrl ( \ | ||
| $incomingRequest | \ |
|
| $params | array |
Additional auth GET params. |
| return | string |
Authorization URL. |
|---|---|---|
public function buildAuthUrl(ServerRequestInterface $incomingRequest, array $params = []): string
{
$defaultParams = [
'client_id' => $this->clientId,
'response_type' => 'code',
'redirect_uri' => $this->getOauth2ReturnUrl(),
'xoauth_displayname' => $incomingRequest->getAttribute(AuthAction::AUTH_NAME),
];
if (!empty($this->getScope())) {
$defaultParams['scope'] = $this->getScope();
}
if ($this->validateAuthState) {
$authState = $this->generateAuthState();
$this->setState('authState', $authState);
$defaultParams['state'] = $authState;
}
return RequestUtil::composeUrl($this->authUrl, array_merge($defaultParams, $this->authParams, $params));
}
Defined in:
Yiisoft\
Creates an HTTP request for the API call.
The created request will be automatically processed adding access token parameters and signature
before sending. You may use {@see \
See also createRequest().
| public \ | ||
| $method | string | |
| $uri | string | |
| return | \ |
HTTP request instance. |
|---|---|---|
public function createApiRequest(string $method, string $uri): RequestInterface
{
return $this->createRequest($method, $this->endpoint . $uri);
}
| public \ | ||
| $method | string | |
| $uri | string | |
public function createRequest(string $method, string $uri): RequestInterface
{
return $this->requestFactory->createRequest($method, $uri);
}
Creates token from its configuration.
| protected Yiisoft\ | ||
| $tokenConfig | array |
Token configuration. |
| return | Yiisoft\ |
Token instance. |
|---|---|---|
protected function createToken(array $tokenConfig = []): OAuthToken
{
$tokenConfig['tokenParamKey'] = 'access_token';
return parent::createToken($tokenConfig);
}
Builds a POST request to {@see tokenUrl} with $params as an application/x-www-form-urlencoded
body. RFC 6749 ยง4.1.3 requires token-endpoint parameters in the request body, not the URI query
string - a strict provider like Google rejects a query-string-only request outright (with no
usable access_token in its error response), while a lenient one like GitHub's legacy endpoint
happens to tolerate it. {@see applyClientCredentialsToRequest()} is expected to append further
params to this same body afterward, not build a request of its own.
| protected \ | ||
| $params | array | |
protected function createTokenRequest(array $params): RequestInterface
{
$request = $this->createRequest('POST', $this->tokenUrl)
->withHeader('Content-Type', 'application/x-www-form-urlencoded');
$request->getBody()->write(http_build_query($params, arg_separator: '&', encoding_type: PHP_QUERY_RFC3986));
return $request;
}
Defined in:
Yiisoft\
Returns the default {@see normalizeUserAttributeMap} value.
Particular client may override this method in order to provide specific default map.
| protected array defaultNormalizeUserAttributeMap ( ) | ||
| return | array |
Normalize attribute map. |
|---|---|---|
protected function defaultNormalizeUserAttributeMap(): array
{
return [];
}
Composes default {@see returnUrl} value.
| protected string defaultReturnUrl ( \ | ||
| $request | \ |
|
| return | string |
Return URL. |
|---|---|---|
protected function defaultReturnUrl(ServerRequestInterface $request): string
{
$params = $request->getQueryParams();
unset($params['code'], $params['state']);
return (string) $request->getUri()->withQuery(
http_build_query($params, arg_separator: '&', encoding_type: PHP_QUERY_RFC3986),
);
}
Defined in:
Yiisoft\
Returns the default {@see viewOptions} value.
Particular client may override this method in order to provide specific default view options.
| protected array defaultViewOptions ( ) | ||
| return | array |
List of default {@see \ |
|---|---|---|
protected function defaultViewOptions(): array
{
return [
'popupWidth' => 860,
'popupHeight' => 480,
];
}
Fetches access token from authorization code.
| public Yiisoft\ | ||
| $incomingRequest | \ |
|
| $authCode | string |
Authorization code, usually comes at GET parameter 'code'. |
| $params | array |
Additional request params. |
| return | Yiisoft\ |
Access token. |
|---|---|---|
public function fetchAccessToken(
ServerRequestInterface $incomingRequest,
string $authCode,
array $params = [],
): OAuthToken {
if ($this->validateAuthState) {
/**
* @var string|null $authState 'authState' is only ever written by
* {@see buildAuthUrl()} with the string returned from {@see generateAuthState()}.
*/
$authState = $this->getState('authState');
$queryParams = $incomingRequest->getQueryParams();
$bodyParams = $incomingRequest->getParsedBody();
/**
* @psalm-suppress MixedAssignment
*/
$incomingState = $queryParams['state'] ?? ($bodyParams['state'] ?? null);
if (
!is_string($incomingState)
|| empty($authState)
|| strcmp($incomingState, $authState) !== 0
) {
throw new InvalidArgumentException('Invalid auth state parameter.');
}
$this->removeState('authState');
}
$defaultParams = [
'grant_type' => 'authorization_code',
'code' => $authCode,
'redirect_uri' => $this->getOauth2ReturnUrl(),
];
$request = $this->createTokenRequest(array_merge($defaultParams, $params));
$request = $this->applyClientCredentialsToRequest($request);
$response = $this->sendRequest($request);
$contents = $response->getBody()->getContents();
$output = $this->parseTokenResponse($contents);
$token = $this->createToken(['params' => $output]);
$this->setAccessToken($token);
return $token;
}
Note: This function will be adapted later to accomodate the 'confidential client'.
See also https://docs.x.com/resources/fundamentals/authentication/oauth-2-0/authorization-code Used specifically for the X i.e. Twitter OAuth2.0 Authorization code with PKCE and public client i.e. client id included in request body; and NOT Confidential Client i.e. Client id not included in the request body.
| public Yiisoft\ | ||
| $incomingRequest | \ |
|
| $authCode | string | |
| $params | array | |
| throws | InvalidArgumentException | |
|---|---|---|
public function fetchAccessTokenWithCodeVerifier(
ServerRequestInterface $incomingRequest,
string $authCode,
array $params = [],
): OAuthToken {
if ($this->validateAuthState) {
/**
* @var string|null $authState 'authState' is only ever written by
* {@see buildAuthUrl()} with the string returned from {@see generateAuthState()}.
*/
$authState = $this->getState('authState');
$queryParams = $incomingRequest->getQueryParams();
$bodyParams = $incomingRequest->getParsedBody();
/**
* @psalm-suppress MixedAssignment
*/
$incomingState = $queryParams['state'] ?? ($bodyParams['state'] ?? null);
if (is_string($incomingState)) {
if (strcmp($incomingState, (string) $authState) !== 0) {
throw new InvalidArgumentException('Invalid auth state parameter.');
}
}
if ($incomingState === null) {
throw new InvalidArgumentException('Invalid auth state parameter.');
}
if (empty($authState)) {
throw new InvalidArgumentException('Invalid auth state parameter.');
}
$this->removeState('authState');
}
$requestBody = [
'code' => $authCode,
'grant_type' => 'authorization_code',
'client_id' => $this->clientId,
'client_secret' => $this->clientSecret,
'redirect_uri' => $params['redirect_uri'] ?? '',
'code_verifier' => $params['code_verifier'] ?? '',
];
$request = $this->requestFactory
->createRequest('POST', $this->tokenUrl)
->withHeader(Header::CONTENT_TYPE, 'application/x-www-form-urlencoded');
$request->getBody()->write(
http_build_query($requestBody, arg_separator: '&', encoding_type: PHP_QUERY_RFC3986),
);
try {
$response = $this->httpClient->sendRequest($request);
$body = $response->getBody()->getContents();
$output = (array) Json::decode($body);
} catch (Throwable) {
$output = [];
}
$token = $this->createToken(['params' => $output]);
$this->setAccessToken($token);
return $token;
}
Fetches current user data as JSON array from the given endpoint, authenticating the request with
the access token as an Authorization header.
| protected array fetchCurrentUserJsonArray ( Yiisoft\ | ||
| $token | Yiisoft\ |
Access token, whose |
| $url | string |
Endpoint URL to fetch user data from. |
| $headers | array |
Additional request headers, merged over the default |
| $authScheme | string |
|
| return | array |
Decoded user data, or an empty array if there is no access token or the request fails. |
|---|---|---|
protected function fetchCurrentUserJsonArray(
OAuthToken $token,
string $url,
array $headers = [],
string $authScheme = 'Bearer',
): array {
$tokenString = (string) $token->getParam('access_token');
if ($tokenString === '') {
return [];
}
$request = RequestUtil::addHeaders(
$this->createRequest('GET', $url),
array_merge(['Authorization' => $authScheme . ' ' . $tokenString], $headers),
);
if ($request->getHeaderLine('User-Agent') === '') {
$request = $request->withHeader('User-Agent', 'yiisoft/yii-auth-client');
}
try {
$body = $this->sendRequest($request)->getBody()->getContents();
} catch (Throwable) {
return [];
}
return $body === '' ? [] : (array) Json::decode($body);
}
Generates the auth state value.
| protected string generateAuthState ( ) | ||
| return | string |
Auth state value. |
|---|---|---|
protected function generateAuthState(): string
{
return hash('sha256', uniqid($this->generateAuthStateBaseString(), true));
}
Builds the seed string used by {@see generateAuthState()}. Extracted into its own method so the seed's composition can be tested directly, since the final hashed/uniqid()-mixed auth state value is opaque and can't reveal how its input was assembled.
| protected string generateAuthStateBaseString ( ) | ||
| return | string |
Auth state seed. |
|---|---|---|
protected function generateAuthStateBaseString(): string
{
$baseString = static::class . '-' . time();
$sessionId = $this->session->getId();
if (null !== $sessionId) {
if ($this->session->isActive()) {
$baseString .= '-' . $sessionId;
}
}
return $baseString;
}
Defined in:
Yiisoft\
| public Yiisoft\ | ||
| return | Yiisoft\ |
Auth token instance. |
|---|---|---|
public function getAccessToken(): ?OAuthToken
{
if (!is_object($this->accessToken)) {
$this->accessToken = $this->restoreAccessToken();
}
return $this->accessToken;
}
| public string getClientSecret ( ) |
public function getClientSecret(): string
{
return $this->clientSecret;
}
Fetches current user data as JSON array using {@see $endpoint} as the user-info URL.
Concrete clients whose provider needs a different URL, headers, or auth scheme override this.
| public array getCurrentUserJsonArray ( Yiisoft\ | ||
| $oauthToken | Yiisoft\ |
|
public function getCurrentUserJsonArray(OAuthToken $oauthToken): array
{
return $this->fetchCurrentUserJsonArray($oauthToken, $this->endpoint);
}
Defined in:
Yiisoft\
| protected string getDefaultScope ( ) |
protected function getDefaultScope(): string
{
return '';
}
| public array getNormalizeUserAttributeMap ( ) | ||
| return | array |
Normalize user attribute map. |
|---|---|---|
public function getNormalizeUserAttributeMap(): array
{
if (empty($this->normalizeUserAttributeMap)) {
$this->normalizeUserAttributeMap = $this->defaultNormalizeUserAttributeMap();
}
return $this->normalizeUserAttributeMap;
}
| public string getOauth2ReturnUrl ( ) |
public function getOauth2ReturnUrl(): string
{
return $this->returnUrl;
}
| public \ |
public function getRequestFactory(): RequestFactoryInterface
{
return $this->requestFactory;
}
Defined in:
Yiisoft\
| public string getReturnUrl ( \ | ||
| $request | \ |
|
| return | string |
Return URL. |
|---|---|---|
public function getReturnUrl(ServerRequestInterface $request): string
{
if ($this->returnUrl === '') {
$this->returnUrl = $this->defaultReturnUrl($request);
}
return $this->returnUrl;
}
Defined in:
Yiisoft\
| public string getScope ( ) |
public function getScope(): string
{
if ($this->scope === null) {
return $this->getDefaultScope();
}
return $this->scope;
}
Compare a callback query parameter 'state' with the saved Auth Client's 'authState' parameter in order to prevent CSRF attacks
Use: Typically used in a AuthController's callback function specifically for an Identity Provider e.g. Facebook
| public mixed getSessionAuthState ( ) |
public function getSessionAuthState(): mixed
{
/**
* @see src\AuthClient protected function getState('authState')
*/
return $this->getState('authState');
}
Defined in:
Yiisoft\
Returns persistent state value.
| protected mixed getState ( string $key ) | ||
| $key | string |
State key. |
| return | mixed |
State value. |
|---|---|---|
protected function getState(string $key): mixed
{
return $this->stateStorage->get($this->getStateKeyPrefix() . $key);
}
Defined in:
Yiisoft\
Returns session key prefix, which is used to store internal states.
| protected string getStateKeyPrefix ( ) | ||
| return | string |
Session key prefix. |
|---|---|---|
protected function getStateKeyPrefix(): string
{
return static::class . '_' . $this->getName() . '_';
}
| public abstract string getTitle ( ) | ||
| return | string |
Service title. |
|---|---|---|
public function getTitle(): string;
Defined in:
Yiisoft\
Returns the authenticated user's attributes, as fetched by {@see initUserAttributes()} and normalized according to {@see normalizeUserAttributeMap}.
| public array getUserAttributes ( ) | ||
| return | array |
User attributes. |
|---|---|---|
public function getUserAttributes(): array
{
$attributes = $this->initUserAttributes();
$normalizeMap = $this->getNormalizeUserAttributeMap();
return array_merge($attributes, $this->normalizeUserAttributes($attributes, $normalizeMap));
}
| public array getViewOptions ( ) | ||
| return | array |
View options in format: optionName => optionValue |
|---|---|---|
public function getViewOptions(): array
{
if (empty($this->viewOptions)) {
$this->viewOptions = $this->defaultViewOptions();
}
return $this->viewOptions;
}
| public \ |
public function getYiisoftFactory(): YiisoftFactory
{
return $this->factory;
}
Defined in:
Yiisoft\
Fetches the authenticated user's raw attribute data from the external auth provider.
Particular client should override this method in order to provide actual attribute fetching.
| protected array initUserAttributes ( ) | ||
| return | array |
Raw user attributes. |
|---|---|---|
protected function initUserAttributes(): array
{
return [];
}
Gets new auth token to replace expired one.
| public Yiisoft\ | ||
| $token | Yiisoft\ |
Expired auth token. |
| return | Yiisoft\ |
New auth token. |
|---|---|---|
public function refreshAccessToken(OAuthToken $token): OAuthToken
{
$params = [
'grant_type' => 'refresh_token',
];
$params = array_merge($token->getParams(), $params);
$request = $this->createTokenRequest($params);
$request = $this->applyClientCredentialsToRequest($request);
$response = $this->sendRequest($request);
$contents = $response->getBody()->getContents();
$output = $this->parseTokenResponse($contents);
return $this->createToken(['params' => $output]);
}
Defined in:
Yiisoft\
Removes persistent state value.
| protected void removeState ( string $key ) | ||
| $key | string |
State key. |
protected function removeState(string $key): void
{
$this->stateStorage->remove($this->getStateKeyPrefix() . $key);
}
Defined in:
Yiisoft\
Restores access token.
| protected Yiisoft\ |
protected function restoreAccessToken(): ?OAuthToken
{
if (($token = $this->getState('token')) instanceof OAuthToken) {
if ($token->getIsExpired() && $this->autoRefreshAccessToken) {
return $this->refreshAccessToken($token);
}
return $token;
}
return null;
}
Defined in:
Yiisoft\
Saves token as persistent state.
| protected $this saveAccessToken ( Yiisoft\ | ||
| $token | Yiisoft\ |
Auth token to be saved. |
| return | $this |
The object itself. |
|---|---|---|
protected function saveAccessToken(?OAuthToken $token = null): self
{
return $this->setState('token', $token);
}
Defined in:
Yiisoft\
| protected \ | ||
| $request | \ |
|
protected function sendRequest(RequestInterface $request): ResponseInterface
{
return $this->httpClient->sendRequest($request);
}
Defined in:
Yiisoft\
Sets access token to be used.
| public void setAccessToken ( array|Yiisoft\ | ||
| $token | array|Yiisoft\ |
Access token or its configuration. |
public function setAccessToken(array|OAuthToken $token): void
{
if (is_array($token) && !empty($token)) {
$newToken = $this->createToken($token);
$this->accessToken = $newToken;
$this->saveAccessToken($newToken);
}
if ($token instanceof OAuthToken) {
$this->accessToken = $token;
$this->saveAccessToken($token);
}
}
| public void setAuthParams ( array $authParams ) | ||
| $authParams | array | |
public function setAuthParams(array $authParams): void
{
$this->authParams = $authParams;
}
Defined in:
Yiisoft\
| public void setAuthUrl ( string $authUrl ) | ||
| $authUrl | string | |
public function setAuthUrl(string $authUrl): void
{
$this->authUrl = $authUrl;
}
| public void setClientId ( string $clientId ) | ||
| $clientId | string | |
public function setClientId(string $clientId): void
{
$this->clientId = $clientId;
}
| public void setClientSecret ( string $clientSecret ) | ||
| $clientSecret | string | |
public function setClientSecret(string $clientSecret): void
{
$this->clientSecret = $clientSecret;
}
| public void setEnvironment ( string $devOrProd ) | ||
| $devOrProd | string | |
public function setEnvironment(string $devOrProd): void
{
$this->environment = $devOrProd;
}
| public void setLogo ( ?string $logo ) | ||
| $logo | ?string | |
public function setLogo(?string $logo): void
{
$this->logo = $logo;
}
Defined in:
Yiisoft\
| public void setName ( string $name ) | ||
| $name | string | |
public function setName(string $name): void
{
$this->name = $name;
}
| public void setOauth2ReturnUrl ( string $returnUrl ) | ||
| $returnUrl | string | |
public function setOauth2ReturnUrl(string $returnUrl): void
{
$this->returnUrl = $returnUrl;
}
| public void setRequestFactory ( \ | ||
| $requestFactory | \ |
|
public function setRequestFactory(RequestFactoryInterface $requestFactory): void
{
$this->requestFactory = $requestFactory;
}
Defined in:
Yiisoft\
| public void setReturnUrl ( string $returnUrl ) | ||
| $returnUrl | string |
Return URL |
public function setReturnUrl(string $returnUrl): void
{
$this->returnUrl = $returnUrl;
}
Defined in:
Yiisoft\
| public void setScope ( string $scope ) | ||
| $scope | string |
Auth request scope, overriding {@see \ |
public function setScope(string $scope): void
{
$this->scope = $scope;
}
Defined in:
Yiisoft\
Sets persistent state.
| protected $this setState ( string $key, mixed $value ) | ||
| $key | string |
State key. |
| $value | mixed |
State value |
| return | $this |
The object itself |
|---|---|---|
protected function setState(string $key, $value): self
{
$this->stateStorage->set($this->getStateKeyPrefix() . $key, $value);
return $this;
}
Defined in:
Yiisoft\
| public void setTitle ( string $title ) | ||
| $title | string | |
public function setTitle(string $title): void
{
$this->title = $title;
}
| public void setTokenUrl ( string $tokenUrl ) | ||
| $tokenUrl | string | |
public function setTokenUrl(string $tokenUrl): void
{
$this->tokenUrl = $tokenUrl;
}
| public void setYiisoftFactory ( \ | ||
| $factory | \ |
|
public function setYiisoftFactory(YiisoftFactory $factory): void
{
$this->factory = $factory;
}
| public self withValidateAuthState ( ) |
public function withValidateAuthState(): self
{
$new = clone $this;
$new->validateAuthState = true;
return $new;
}
| public self withoutValidateAuthState ( ) |
public function withoutValidateAuthState(): self
{
$new = clone $this;
$new->validateAuthState = false;
return $new;
}
User Contributed Notes
Leave a comment
Join the conversation to share a note.