OAuth2Interface
extends
OAuthInterface
in
Specifies the basic methods for an OAuth2 provider.
Table of Contents
Constants
- AUTH_METHOD = self::AUTH_METHOD_HEADER
- Specifies the authentication method:
- AUTH_METHOD_HEADER = 1
- AUTH_METHOD_QUERY = 2
- AUTH_PREFIX_HEADER = 'Bearer'
- The name of the authentication header in case of OAuth2Interface::AUTH_METHOD_HEADER
- AUTH_PREFIX_QUERY = 'access_token'
- The name of the authentication query parameter in case of OAuth2Interface::AUTH_METHOD_QUERY
- DEFAULT_SCOPES = []
- Default scopes to apply if none were provided via the $scopes parameter
- HEADERS_API = []
- additional headers to use during API access
- HEADERS_AUTH = []
- additional headers to use during authentication
- SCOPE_DELIMITER = ' '
- The delimiter string for scopes
Methods
- getAccessToken() : AccessToken
- Obtains an OAuth2 access token with the given $code, verifies the $state if the provider implements the CSRFToken interface, and returns an AccessToken object
- getAccessTokenFromStorage() : AccessToken
- Gets an access token from the current OAuthStorageInterface (shorthand/convenience)
- getAuthURL() : UriInterface
- Prepares the URL with optional $params which redirects to the provider's authorization prompt and returns a PSR-7 UriInterface with all necessary parameters set
- getStorage() : OAuthStorageInterface
- Returns the current OAuthStorageInterface
- me() : ResponseInterface
- Returns information about the currently authenticated user (usually a /me or /user endpoint).
- request() : ResponseInterface
- Prepares an API request to $path with the given parameters, gets authorization, fires the request and returns a PSR-7 ResponseInterface with the corresponding API response
- setLogger() : static
- Sets an optional PSR-3 LoggerInterface
- setRequestFactory() : static
- Sets an optional PSR-17 RequestFactoryInterface
- setStorage() : static
- Sets an optional OAuthStorageInterface
- setStreamFactory() : static
- Sets an optional PSR-17 StreamFactoryInterface
- setUriFactory() : static
- Sets an optional PSR-17 UriFactoryInterface
- storeAccessToken() : static
- Sets an access token in the current OAuthStorageInterface (shorthand/convenience)
Constants
AUTH_METHOD
Specifies the authentication method:
public
int
AUTH_METHOD
= self::AUTH_METHOD_HEADER
- OAuth2Interface::AUTH_METHOD_HEADER (Bearer, OAuth, ...)
- OAuth2Interface::AUTH_METHOD_QUERY (access_token, ...)
AUTH_METHOD_HEADER
public
int
AUTH_METHOD_HEADER
= 1
AUTH_METHOD_QUERY
public
int
AUTH_METHOD_QUERY
= 2
AUTH_PREFIX_HEADER
The name of the authentication header in case of OAuth2Interface::AUTH_METHOD_HEADER
public
string
AUTH_PREFIX_HEADER
= 'Bearer'
AUTH_PREFIX_QUERY
The name of the authentication query parameter in case of OAuth2Interface::AUTH_METHOD_QUERY
public
string
AUTH_PREFIX_QUERY
= 'access_token'
DEFAULT_SCOPES
Default scopes to apply if none were provided via the $scopes parameter
public
array<string|int, string>
DEFAULT_SCOPES
= []
HEADERS_API
additional headers to use during API access
public
array<string|int, mixed>
HEADERS_API
= []
Note: must not contain: Authorization
HEADERS_AUTH
additional headers to use during authentication
public
array<string|int, mixed>
HEADERS_AUTH
= []
Note: must not contain: Accept-Encoding, Authorization, Content-Length, Content-Type
SCOPE_DELIMITER
The delimiter string for scopes
public
string
SCOPE_DELIMITER
= ' '
Methods
getAccessToken()
Obtains an OAuth2 access token with the given $code, verifies the $state if the provider implements the CSRFToken interface, and returns an AccessToken object
public
getAccessToken(string $code[, string|null $state = null ]) : AccessToken
Parameters
- $code : string
- $state : string|null = null
Tags
Return values
AccessTokengetAccessTokenFromStorage()
Gets an access token from the current OAuthStorageInterface (shorthand/convenience)
public
getAccessTokenFromStorage() : AccessToken
Return values
AccessTokengetAuthURL()
Prepares the URL with optional $params which redirects to the provider's authorization prompt and returns a PSR-7 UriInterface with all necessary parameters set
public
getAuthURL([array<string|int, mixed>|null $params = null ][, array<string|int, mixed>|null $scopes = null ]) : UriInterface
Parameters
- $params : array<string|int, mixed>|null = null
- $scopes : array<string|int, mixed>|null = null
Tags
Return values
UriInterfacegetStorage()
Returns the current OAuthStorageInterface
public
getStorage() : OAuthStorageInterface
Return values
OAuthStorageInterfaceme()
Returns information about the currently authenticated user (usually a /me or /user endpoint).
public
me() : ResponseInterface
Throws a ProviderException if no such information is available or if the method cannot be implemented.
Return values
ResponseInterfacerequest()
Prepares an API request to $path with the given parameters, gets authorization, fires the request and returns a PSR-7 ResponseInterface with the corresponding API response
public
request(string $path[, array<string|int, mixed>|null $params = null ][, string|null $method = null ][, StreamInterface|array<string|int, mixed>|string|null $body = null ][, array<string|int, mixed>|null $headers = null ][, string|null $protocolVersion = null ]) : ResponseInterface
Parameters
- $path : string
- $params : array<string|int, mixed>|null = null
- $method : string|null = null
- $body : StreamInterface|array<string|int, mixed>|string|null = null
- $headers : array<string|int, mixed>|null = null
- $protocolVersion : string|null = null
Return values
ResponseInterfacesetLogger()
Sets an optional PSR-3 LoggerInterface
public
setLogger(LoggerInterface $logger) : static
Parameters
- $logger : LoggerInterface
Return values
staticsetRequestFactory()
Sets an optional PSR-17 RequestFactoryInterface
public
setRequestFactory(RequestFactoryInterface $requestFactory) : static
Parameters
- $requestFactory : RequestFactoryInterface
Return values
staticsetStorage()
Sets an optional OAuthStorageInterface
public
setStorage(OAuthStorageInterface $storage) : static
Parameters
- $storage : OAuthStorageInterface
Return values
staticsetStreamFactory()
Sets an optional PSR-17 StreamFactoryInterface
public
setStreamFactory(StreamFactoryInterface $streamFactory) : static
Parameters
- $streamFactory : StreamFactoryInterface
Return values
staticsetUriFactory()
Sets an optional PSR-17 UriFactoryInterface
public
setUriFactory(UriFactoryInterface $uriFactory) : static
Parameters
- $uriFactory : UriFactoryInterface
Return values
staticstoreAccessToken()
Sets an access token in the current OAuthStorageInterface (shorthand/convenience)
public
storeAccessToken(AccessToken $token) : static
Parameters
- $token : AccessToken