GitHub
extends OAuth2Provider
in package
implements
CSRFToken, TokenRefresh, UserInfo
GitHub OAuth2
Tags
Table of Contents
Interfaces
- CSRFToken
- Specifies the methods required for the OAuth2 CSRF token validation ("state parameter")
- TokenRefresh
- Indicates whether the provider is capable of the OAuth2 token refresh.
- UserInfo
- Indicates whether the service can provide information about the currently authenticated user, usually via a "/me", "/user" or "/tokeninfo" endpoint.
Constants
- DEFAULT_SCOPES = [self::SCOPE_USER, self::SCOPE_PUBLIC_REPO, self::SCOPE_GIST]
- HEADERS_API = ['Accept' => 'application/vnd.github+json', 'X-GitHub-Api-Version' => '2022-11-28']
- HEADERS_AUTH = ['Accept' => 'application/json']
- IDENTIFIER = 'GITHUB'
- SCOPE_CODESPACE = 'codespace'
- SCOPE_GIST = 'gist'
- SCOPE_GPG_KEY_ADMIN = 'admin:gpg_key'
- SCOPE_GPG_KEY_READ = 'read:gpg_key'
- SCOPE_GPG_KEY_WRITE = 'write:gpg_key'
- SCOPE_NOTIFICATIONS = 'notifications'
- SCOPE_ORG_ADMIN = 'admin:org'
- SCOPE_ORG_HOOK_ADMIN = 'admin:org_hook'
- SCOPE_ORG_READ = 'read:org'
- SCOPE_ORG_WRITE = 'write:org'
- SCOPE_PACKAGES_DELETE = 'delete:packages'
- SCOPE_PACKAGES_READ = 'read:packages'
- SCOPE_PACKAGES_WRITE = 'write:packages'
- SCOPE_PROJECT = 'project'
- SCOPE_PROJECT_READ = 'read:project'
- SCOPE_PUBLIC_KEY_ADMIN = 'admin:public_key'
- SCOPE_PUBLIC_KEY_READ = 'read:public_key'
- SCOPE_PUBLIC_KEY_WRITE = 'write:public_key'
- SCOPE_PUBLIC_REPO = 'public_repo'
- SCOPE_REPO = 'repo'
- SCOPE_REPO_DELETE = 'delete_repo'
- SCOPE_REPO_DEPLOYMENT = 'repo_deployment'
- SCOPE_REPO_HOOK_ADMIN = 'admin:repo_hook'
- SCOPE_REPO_HOOK_READ = 'read:repo_hook'
- SCOPE_REPO_HOOK_WRITE = 'write:repo_hook'
- SCOPE_REPO_INVITE = 'repo:invite'
- SCOPE_REPO_STATUS = 'repo:status'
- SCOPE_SECURITY_EVENTS = 'security_events'
- SCOPE_USER = 'user'
- SCOPE_USER_EMAIL = 'user:email'
- SCOPE_USER_FOLLOW = 'user:follow'
- SCOPE_USER_READ = 'read:user'
- SCOPE_WORKFLOW = 'workflow'
- SCOPES_DELIMITER = ','
Properties
- $accessTokenURL : string
- $apiDocs : string|null
- $apiURL : string
- $applicationURL : string|null
- $authorizationURL : string
- $clientCredentialsTokenURL : string|null
- An optional client credentials token endpoint in case the provider supports ClientCredentials.
- $http : ClientInterface
- The PSR-18 HTTP client
- $logger : LoggerInterface
- A PSR-3 logger
- $name : string
- The name of the provider/class
- $options : OAuthOptions|SettingsContainerInterface
- The options instance
- $parAuthorizationURL : string
- An optional PAR (Pushed Authorization Request) endpoint URL
- $refreshTokenURL : string|null
- An optional refresh token endpoint in case the provider supports TokenRefresh.
- $requestFactory : RequestFactoryInterface
- A PSR-17 request factory
- $revokeURL : string
- An optional URL for application side token revocation
- $storage : OAuthStorageInterface
- A storage instance
- $streamFactory : StreamFactoryInterface
- A PSR-17 stream factory
- $uriFactory : UriFactoryInterface
- A PSR-17 URI factory
- $userRevokeURL : string|null
Methods
- __construct() : mixed
- OAuthProvider constructor.
- checkState() : void
- implements CSRFToken::checkState()
- 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)
- getApiDocURL() : string|null
- Returns the link to the provider's API docs, or null if the value is not set
- getApplicationURL() : string|null
- Returns the link to the provider's credential registration/application page, or null if the value is not set
- getAuthorizationURL() : 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.
- getName() : string
- Returns the name of the provider/class
- getRequestAuthorization() : RequestInterface
- Authorizes the $request with the credentials from the given $token and returns a PSR-7 RequestInterface with all necessary headers and/or parameters set
- getStorage() : OAuthStorageInterface
- Returns the current OAuthStorageInterface
- getUserRevokeURL() : string|null
- Returns the link to the page where a user can revoke access tokens, or null if the value is not set
- InvalidateAccessToken() : bool
- implements TokenInvalidate
- me() : AuthenticatedUser
- Returns information about the currently authenticated user (usually a /me or /user endpoint).
- refreshAccessToken() : AccessToken
- implements TokenRefresh::refreshAccessToken()
- 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
- sendRequest() : ResponseInterface
- setLogger() : static
- Sets an optional PSR-3 LoggerInterface
- setRequestFactory() : static
- Sets an optional PSR-17 RequestFactoryInterface
- setState() : array<string, string>
- implements CSRFToken::setState()
- 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)
- addBasicAuthHeader() : RequestInterface
- Adds an "Authorization: Basic <base64(key:secret)>" header to the given request
- cleanBodyParams() : array<string, string>
- Cleans an array of body parameters
- cleanQueryParams() : array<string, string>
- Cleans an array of query parameters
- construct() : void
- A replacement constructor that you can call in extended classes, so that you don't have to implement the monstrous original `__construct()`
- createAccessToken() : AccessToken
- Creates an access token with the provider set to $this->name
- getAccessTokenRequestBodyParams() : array<string, string>
- prepares the request body parameters for the access token request
- getAuthorizationURLRequestParams() : array<string, string>
- prepares the query parameters for the auth URL
- getMeResponseData() : array<int|string, mixed>
- fetches the provider's "me" endpoint and returns the JSON data as an array
- getRefreshAccessTokenRequestBodyParams() : array<string, string|null>
- prepares the request body parameters for the token refresh
- getRequestHeaders() : array<string, string>
- Prepare request headers
- getRequestTarget() : string
- Determine the request target from the given URI (path segment or URL) with respect to $apiURL, anything except host and path will be ignored, scheme will always be set to "https".
- getRequestURL() : string
- Prepares the request URL
- getTokenResponseData() : array<string, string|mixed>
- extracts the data from the access token response and returns an array with the key->value pairs contained
- handleMeResponseError() : void
- handles errors for the `me()` endpoints - one horrible block of code to catch them all
- nonce() : string
- returns a 32 byte random string (in hexadecimal representation) for use as a nonce
- parseTokenResponse() : AccessToken
- Parses the response from a request to the token endpoint
- sendAccessTokenRequest() : ResponseInterface
- sends a request to the access/refresh token endpoint $url with the given $body as form data
- sendMeRequest() : ResponseInterface
- prepares and sends the request to the provider's "me" endpoint and returns a ResponseInterface
- setRequestBody() : RequestInterface
- Prepares the request body and sets it in the given RequestInterface, along with a Content-Length header
Constants
DEFAULT_SCOPES
public
mixed
DEFAULT_SCOPES
= [self::SCOPE_USER, self::SCOPE_PUBLIC_REPO, self::SCOPE_GIST]
HEADERS_API
public
mixed
HEADERS_API
= ['Accept' => 'application/vnd.github+json', 'X-GitHub-Api-Version' => '2022-11-28']
HEADERS_AUTH
public
mixed
HEADERS_AUTH
= ['Accept' => 'application/json']
IDENTIFIER
public
mixed
IDENTIFIER
= 'GITHUB'
SCOPE_CODESPACE
public
mixed
SCOPE_CODESPACE
= 'codespace'
SCOPE_GIST
public
mixed
SCOPE_GIST
= 'gist'
SCOPE_GPG_KEY_ADMIN
public
mixed
SCOPE_GPG_KEY_ADMIN
= 'admin:gpg_key'
SCOPE_GPG_KEY_READ
public
mixed
SCOPE_GPG_KEY_READ
= 'read:gpg_key'
SCOPE_GPG_KEY_WRITE
public
mixed
SCOPE_GPG_KEY_WRITE
= 'write:gpg_key'
SCOPE_NOTIFICATIONS
public
mixed
SCOPE_NOTIFICATIONS
= 'notifications'
SCOPE_ORG_ADMIN
public
mixed
SCOPE_ORG_ADMIN
= 'admin:org'
SCOPE_ORG_HOOK_ADMIN
public
mixed
SCOPE_ORG_HOOK_ADMIN
= 'admin:org_hook'
SCOPE_ORG_READ
public
mixed
SCOPE_ORG_READ
= 'read:org'
SCOPE_ORG_WRITE
public
mixed
SCOPE_ORG_WRITE
= 'write:org'
SCOPE_PACKAGES_DELETE
public
mixed
SCOPE_PACKAGES_DELETE
= 'delete:packages'
SCOPE_PACKAGES_READ
public
mixed
SCOPE_PACKAGES_READ
= 'read:packages'
SCOPE_PACKAGES_WRITE
public
mixed
SCOPE_PACKAGES_WRITE
= 'write:packages'
SCOPE_PROJECT
public
mixed
SCOPE_PROJECT
= 'project'
SCOPE_PROJECT_READ
public
mixed
SCOPE_PROJECT_READ
= 'read:project'
SCOPE_PUBLIC_KEY_ADMIN
public
mixed
SCOPE_PUBLIC_KEY_ADMIN
= 'admin:public_key'
SCOPE_PUBLIC_KEY_READ
public
mixed
SCOPE_PUBLIC_KEY_READ
= 'read:public_key'
SCOPE_PUBLIC_KEY_WRITE
public
mixed
SCOPE_PUBLIC_KEY_WRITE
= 'write:public_key'
SCOPE_PUBLIC_REPO
public
mixed
SCOPE_PUBLIC_REPO
= 'public_repo'
SCOPE_REPO
public
mixed
SCOPE_REPO
= 'repo'
SCOPE_REPO_DELETE
public
mixed
SCOPE_REPO_DELETE
= 'delete_repo'
SCOPE_REPO_DEPLOYMENT
public
mixed
SCOPE_REPO_DEPLOYMENT
= 'repo_deployment'
SCOPE_REPO_HOOK_ADMIN
public
mixed
SCOPE_REPO_HOOK_ADMIN
= 'admin:repo_hook'
SCOPE_REPO_HOOK_READ
public
mixed
SCOPE_REPO_HOOK_READ
= 'read:repo_hook'
SCOPE_REPO_HOOK_WRITE
public
mixed
SCOPE_REPO_HOOK_WRITE
= 'write:repo_hook'
SCOPE_REPO_INVITE
public
mixed
SCOPE_REPO_INVITE
= 'repo:invite'
SCOPE_REPO_STATUS
public
mixed
SCOPE_REPO_STATUS
= 'repo:status'
SCOPE_SECURITY_EVENTS
public
mixed
SCOPE_SECURITY_EVENTS
= 'security_events'
SCOPE_USER
public
mixed
SCOPE_USER
= 'user'
SCOPE_USER_EMAIL
public
mixed
SCOPE_USER_EMAIL
= 'user:email'
SCOPE_USER_FOLLOW
public
mixed
SCOPE_USER_FOLLOW
= 'user:follow'
SCOPE_USER_READ
public
mixed
SCOPE_USER_READ
= 'read:user'
SCOPE_WORKFLOW
public
mixed
SCOPE_WORKFLOW
= 'workflow'
SCOPES_DELIMITER
public
mixed
SCOPES_DELIMITER
= ','
Properties
$accessTokenURL
protected
string
$accessTokenURL
= 'https://github.com/login/oauth/access_token'
$apiDocs
protected
string|null
$apiDocs
= 'https://docs.github.com/rest'
$apiURL
protected
string
$apiURL
= 'https://api.github.com'
$applicationURL
protected
string|null
$applicationURL
= 'https://github.com/settings/developers'
$authorizationURL
protected
string
$authorizationURL
= 'https://github.com/login/oauth/authorize'
$clientCredentialsTokenURL
An optional client credentials token endpoint in case the provider supports ClientCredentials.
protected
string|null
$clientCredentialsTokenURL
= null
If the provider supports client credentials and $clientCredentialsTokenURL is null, $accessTokenURL will be used instead.
Tags
$http
The PSR-18 HTTP client
protected
ClientInterface
$http
$logger
A PSR-3 logger
protected
LoggerInterface
$logger
$name
The name of the provider/class
protected
string
$name
= ''
$options
The options instance
protected
OAuthOptions|SettingsContainerInterface
$options
$parAuthorizationURL
An optional PAR (Pushed Authorization Request) endpoint URL
protected
string
$parAuthorizationURL
= ''
Tags
$refreshTokenURL
An optional refresh token endpoint in case the provider supports TokenRefresh.
protected
string|null
$refreshTokenURL
= null
If the provider supports token refresh and $refreshTokenURL is null, $accessTokenURL will be used instead.
Tags
$requestFactory
A PSR-17 request factory
protected
RequestFactoryInterface
$requestFactory
$revokeURL
An optional URL for application side token revocation
protected
string
$revokeURL
= ''
Tags
$storage
A storage instance
protected
OAuthStorageInterface
$storage
$streamFactory
A PSR-17 stream factory
protected
StreamFactoryInterface
$streamFactory
$uriFactory
A PSR-17 URI factory
protected
UriFactoryInterface
$uriFactory
$userRevokeURL
protected
string|null
$userRevokeURL
= 'https://github.com/settings/applications'
Methods
__construct()
OAuthProvider constructor.
public
final __construct(OAuthOptions|SettingsContainerInterface $options, ClientInterface $http, RequestFactoryInterface $requestFactory, StreamFactoryInterface $streamFactory, UriFactoryInterface $uriFactory[, OAuthStorageInterface $storage = new MemoryStorage() ][, LoggerInterface $logger = new NullLogger() ]) : mixed
Parameters
- $options : OAuthOptions|SettingsContainerInterface
- $http : ClientInterface
- $requestFactory : RequestFactoryInterface
- $streamFactory : StreamFactoryInterface
- $uriFactory : UriFactoryInterface
- $storage : OAuthStorageInterface = new MemoryStorage()
- $logger : LoggerInterface = new NullLogger()
checkState()
implements CSRFToken::checkState()
public
final checkState([string|null $state = null ]) : void
Parameters
- $state : string|null = null
Tags
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
Return values
AccessTokengetAccessTokenFromStorage()
Gets an access token from the current OAuthStorageInterface (shorthand/convenience)
public
final getAccessTokenFromStorage() : AccessToken
Tags
Return values
AccessTokengetApiDocURL()
Returns the link to the provider's API docs, or null if the value is not set
public
final getApiDocURL() : string|null
Tags
Return values
string|nullgetApplicationURL()
Returns the link to the provider's credential registration/application page, or null if the value is not set
public
final getApplicationURL() : string|null
Tags
Return values
string|nullgetAuthorizationURL()
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
getAuthorizationURL([array<string, scalar>|null $params = null ][, array<string|int, string>|null $scopes = null ]) : UriInterface
Parameters
- $params : array<string, scalar>|null = null
- $scopes : array<string|int, string>|null = null
Return values
UriInterfacegetName()
Returns the name of the provider/class
public
final getName() : string
Tags
Return values
stringgetRequestAuthorization()
Authorizes the $request with the credentials from the given $token and returns a PSR-7 RequestInterface with all necessary headers and/or parameters set
public
getRequestAuthorization(RequestInterface $request[, AccessToken|null $token = null ]) : RequestInterface
Parameters
- $request : RequestInterface
- $token : AccessToken|null = null
Return values
RequestInterfacegetStorage()
Returns the current OAuthStorageInterface
public
final getStorage() : OAuthStorageInterface
Tags
Return values
OAuthStorageInterfacegetUserRevokeURL()
Returns the link to the page where a user can revoke access tokens, or null if the value is not set
public
final getUserRevokeURL() : string|null
Tags
Return values
string|nullInvalidateAccessToken()
implements TokenInvalidate
public
InvalidateAccessToken([AccessToken|null $token = null ]) : bool
Parameters
- $token : AccessToken|null = null
Tags
Return values
boolme()
Returns information about the currently authenticated user (usually a /me or /user endpoint).
public
me() : AuthenticatedUser
Tags
Return values
AuthenticatedUserrefreshAccessToken()
implements TokenRefresh::refreshAccessToken()
public
refreshAccessToken([AccessToken|null $token = null ]) : AccessToken
Parameters
- $token : AccessToken|null = null
Tags
Return values
AccessTokenrequest()
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
Tags
Return values
ResponseInterfacesendRequest()
public
final sendRequest(RequestInterface $request) : ResponseInterface
Parameters
- $request : RequestInterface
Tags
Return values
ResponseInterfacesetLogger()
Sets an optional PSR-3 LoggerInterface
public
final setLogger(LoggerInterface $logger) : static
Parameters
- $logger : LoggerInterface
Tags
Return values
staticsetRequestFactory()
Sets an optional PSR-17 RequestFactoryInterface
public
final setRequestFactory(RequestFactoryInterface $requestFactory) : static
Parameters
- $requestFactory : RequestFactoryInterface
Tags
Return values
staticsetState()
implements CSRFToken::setState()
public
final setState(array<string, string> $params) : array<string, string>
Parameters
- $params : array<string, string>
Tags
Return values
array<string, string>setStorage()
Sets an optional OAuthStorageInterface
public
final setStorage(OAuthStorageInterface $storage) : static
Parameters
- $storage : OAuthStorageInterface
Tags
Return values
staticsetStreamFactory()
Sets an optional PSR-17 StreamFactoryInterface
public
final setStreamFactory(StreamFactoryInterface $streamFactory) : static
Parameters
- $streamFactory : StreamFactoryInterface
Tags
Return values
staticsetUriFactory()
Sets an optional PSR-17 UriFactoryInterface
public
final setUriFactory(UriFactoryInterface $uriFactory) : static
Parameters
- $uriFactory : UriFactoryInterface
Tags
Return values
staticstoreAccessToken()
Sets an access token in the current OAuthStorageInterface (shorthand/convenience)
public
final storeAccessToken(AccessToken $token) : static
Parameters
- $token : AccessToken
Tags
Return values
staticaddBasicAuthHeader()
Adds an "Authorization: Basic <base64(key:secret)>" header to the given request
protected
addBasicAuthHeader(RequestInterface $request) : RequestInterface
Parameters
- $request : RequestInterface
Return values
RequestInterfacecleanBodyParams()
Cleans an array of body parameters
protected
cleanBodyParams(array<string, scalar|bool|null> $params) : array<string, string>
Parameters
- $params : array<string, scalar|bool|null>
Return values
array<string, string>cleanQueryParams()
Cleans an array of query parameters
protected
cleanQueryParams(array<string, scalar|bool|null> $params) : array<string, string>
Parameters
- $params : array<string, scalar|bool|null>
Return values
array<string, string>construct()
A replacement constructor that you can call in extended classes, so that you don't have to implement the monstrous original `__construct()`
protected
construct() : void
createAccessToken()
Creates an access token with the provider set to $this->name
protected
final createAccessToken() : AccessToken
Tags
Return values
AccessTokengetAccessTokenRequestBodyParams()
prepares the request body parameters for the access token request
protected
getAccessTokenRequestBodyParams(string $code) : array<string, string>
Parameters
- $code : string
Tags
Return values
array<string, string>getAuthorizationURLRequestParams()
prepares the query parameters for the auth URL
protected
getAuthorizationURLRequestParams(array<string, scalar> $params, array<string|int, string> $scopes) : array<string, string>
Parameters
- $params : array<string, scalar>
- $scopes : array<string|int, string>
Tags
Return values
array<string, string>getMeResponseData()
fetches the provider's "me" endpoint and returns the JSON data as an array
protected
final getMeResponseData(string $endpoint[, array<string, scalar|bool|null>|null $params = null ]) : array<int|string, mixed>
Parameters
- $endpoint : string
- $params : array<string, scalar|bool|null>|null = null
Tags
Return values
array<int|string, mixed>getRefreshAccessTokenRequestBodyParams()
prepares the request body parameters for the token refresh
protected
getRefreshAccessTokenRequestBodyParams(string $refreshToken) : array<string, string|null>
Parameters
- $refreshToken : string
Tags
Return values
array<string, string|null>getRequestHeaders()
Prepare request headers
protected
final getRequestHeaders([array<string, string>|null $headers = null ]) : array<string, string>
Parameters
- $headers : array<string, string>|null = null
Return values
array<string, string>getRequestTarget()
Determine the request target from the given URI (path segment or URL) with respect to $apiURL, anything except host and path will be ignored, scheme will always be set to "https".
protected
getRequestTarget(string $uri) : string
Throws if the host of a given URL does not match the host of $apiURL.
Parameters
- $uri : string
Tags
Return values
stringgetRequestURL()
Prepares the request URL
protected
final getRequestURL(string $path[, array<string, scalar|bool|null>|null $params = null ]) : string
Parameters
- $path : string
- $params : array<string, scalar|bool|null>|null = null
Return values
stringgetTokenResponseData()
extracts the data from the access token response and returns an array with the key->value pairs contained
protected
getTokenResponseData(ResponseInterface $response) : array<string, string|mixed>
we don't bother checking the content type here as it's sometimes vendor specific, not set or plain wrong: the spec mandates a JSON body which is what almost all providers send - weird exceptions:
- mixcloud sends JSON with a "text/javascript" header
- deezer sends form-data with a "text/html" header (???)
- silly amazon sends gzip compressed data... (handled by decodeJSON)
Parameters
- $response : ResponseInterface
Tags
Return values
array<string, string|mixed>handleMeResponseError()
handles errors for the `me()` endpoints - one horrible block of code to catch them all
protected
final handleMeResponseError(ResponseInterface $response) : void
we could simply throw a ProviderException and be done with it, but we're nice and try to provide a message too
Parameters
- $response : ResponseInterface
Tags
nonce()
returns a 32 byte random string (in hexadecimal representation) for use as a nonce
protected
nonce([int $bytes = 32 ]) : string
Parameters
- $bytes : int = 32
Tags
Return values
stringparseTokenResponse()
Parses the response from a request to the token endpoint
protected
parseTokenResponse(ResponseInterface $response) : AccessToken
Parameters
- $response : ResponseInterface
Tags
Return values
AccessTokensendAccessTokenRequest()
sends a request to the access/refresh token endpoint $url with the given $body as form data
protected
sendAccessTokenRequest(string $url, array<string, scalar|bool|null> $body) : ResponseInterface
Parameters
- $url : string
- $body : array<string, scalar|bool|null>
Tags
Return values
ResponseInterfacesendMeRequest()
prepares and sends the request to the provider's "me" endpoint and returns a ResponseInterface
protected
sendMeRequest(string $endpoint[, array<string, scalar|bool|null>|null $params = null ]) : ResponseInterface
Parameters
- $endpoint : string
- $params : array<string, scalar|bool|null>|null = null
Return values
ResponseInterfacesetRequestBody()
Prepares the request body and sets it in the given RequestInterface, along with a Content-Length header
protected
final setRequestBody(StreamInterface|array<string, scalar|bool|null>|string $body, RequestInterface $request) : RequestInterface
Parameters
- $body : StreamInterface|array<string, scalar|bool|null>|string
- $request : RequestInterface