OAuth2
class OAuth2 implements FetchAuthTokenInterface (View source)
OAuth2 supports authentication by OAuth2 2-legged flows.
It primary supports
- service account authorization
 - authorization where a user already has an access token
 
Constants
| DEFAULT_EXPIRY_SECONDS | 
                     
  | 
            
| DEFAULT_SKEW_SECONDS | 
                     
  | 
            
| JWT_URN | 
                     
  | 
            
Properties
| static | $knownSigningAlgorithms | TODO: determine known methods from the keys of JWT::methods.  | 
                |
| static array | $knownGrantTypes | The well known grant types.  | 
                
Methods
Create a new OAuthCredentials.
Verifies the idToken if present.
Obtains the encoded jwt from the instance data.
Generates a request for token credentials.
Fetches the auth tokens based on the current state.
Obtains a key that can used to cache the results of #fetchAuthToken.
Parses the fetched tokens.
Updates an OAuth 2.0 client.
Builds the authorization Uri that the user should be redirected to.
Sets the authorization server's HTTP endpoint capable of authenticating the end-user and obtaining authorization.
Gets the authorization server's HTTP endpoint capable of authenticating the end-user and obtaining authorization.
Gets the authorization server's HTTP endpoint capable of issuing tokens and refreshing expired tokens.
Sets the authorization server's HTTP endpoint capable of issuing tokens and refreshing expired tokens.
Gets the redirection URI used in the initial request.
Sets the redirection URI used in the initial request.
Gets the scope of the access requests as a space-delimited String.
Sets the scope of the access request, expressed either as an Array or as a space-delimited String.
Gets the current grant type.
Sets the current grant type.
Gets an arbitrary string designed to allow the client to maintain state.
Sets an arbitrary string designed to allow the client to maintain state.
Gets the authorization code issued to this client.
Sets the authorization code issued to this client.
Gets the resource owner's username.
Sets the resource owner's username.
Gets the resource owner's password.
Sets the resource owner's password.
Sets a unique identifier issued to the client to identify itself to the authorization server.
Sets a unique identifier issued to the client to identify itself to the authorization server.
Gets a shared symmetric secret issued by the authorization server, which is used to authenticate the client.
Sets a shared symmetric secret issued by the authorization server, which is used to authenticate the client.
Gets the Issuer ID when using assertion profile.
Sets the Issuer ID when using assertion profile.
Gets the target sub when issuing assertions.
Sets the target sub when issuing assertions.
Gets the target audience when issuing assertions.
Sets the target audience when issuing assertions.
Gets the signing key when using an assertion profile.
Sets the signing key when using an assertion profile.
Gets the signing algorithm when using an assertion profile.
Sets the signing algorithm when using an assertion profile.
Gets the set of parameters used by extension when using an extension grant type.
Sets the set of parameters used by extension when using an extension grant type.
Gets the number of seconds assertions are valid for.
Sets the number of seconds assertions are valid for.
Gets the lifetime of the access token in seconds.
Sets the lifetime of the access token in seconds.
Gets the time the current access token expires at.
Returns true if the acccess token has expired.
Sets the time the current access token expires at.
Gets the time the current access token was issued at.
Sets the time the current access token was issued at.
Gets the current access token.
Sets the current access token.
Gets the current ID token.
Sets the current ID token.
Gets the refresh token associated with the current access token.
Sets the refresh token associated with the current access token.
Sets additional claims to be included in the JWT token
Gets the additional claims to be included in the JWT token.
The expiration of the last received token.
Details
        
        
    __construct(array $config)
        
    
    Create a new OAuthCredentials.
The configuration array accepts various options
- 
authorizationUri The authorization server's HTTP endpoint capable of authenticating the end-user and obtaining authorization.
 - 
tokenCredentialUri The authorization server's HTTP endpoint capable of issuing tokens and refreshing expired tokens.
 - 
clientId A unique identifier issued to the client to identify itself to the authorization server.
 - 
clientSecret A shared symmetric secret issued by the authorization server, which is used to authenticate the client.
 - 
scope The scope of the access request, expressed either as an Array or as a space-delimited String.
 - 
state An arbitrary string designed to allow the client to maintain state.
 - 
redirectUri The redirection URI used in the initial request.
 - 
username The resource owner's username.
 - 
password The resource owner's password.
 - 
issuer Issuer ID when using assertion profile
 - 
audience Target audience for assertions
 - 
expiry Number of seconds assertions are valid for
 - 
signingKey Signing key when using assertion profile
 - 
refreshToken The refresh token associated with the access token to be refreshed.
 - 
accessToken The current access token for this client.
 - 
idToken The current ID token for this client.
 - 
extensionParams When using an extension grant type, this is the set of parameters used by that extension.
 
        
                            null|object
    verifyIdToken(string $publicKey = null, array $allowed_algs = array())
        
    
    Verifies the idToken if present.
- if none is present, return null
 - if present, but invalid, raises DomainException.
 - otherwise returns the payload in the idtoken as a PHP object.
 
if $publicKey is null, the key is decoded without being verified.
        
                            string
    toJwt(array $config = [])
        
    
    Obtains the encoded jwt from the instance data.
        
                            RequestInterface
    generateCredentialsRequest()
        
    
    Generates a request for token credentials.
        
                            array
    fetchAuthToken(callable $httpHandler = null)
        
    
    Fetches the auth tokens based on the current state.
        
                            string
    getCacheKey()
        
    
    Obtains a key that can used to cache the results of #fetchAuthToken.
The key is derived from the scopes.
        
                            array
    parseTokenResponse(ResponseInterface $resp)
        
    
    Parses the fetched tokens.
        
        
    updateToken(array $config)
        
    
    Updates an OAuth 2.0 client.
        
                            UriInterface
    buildFullAuthorizationUri(array $config = [])
        
    
    Builds the authorization Uri that the user should be redirected to.
        
        
    setAuthorizationUri(string $uri)
        
    
    Sets the authorization server's HTTP endpoint capable of authenticating the end-user and obtaining authorization.
        
                            UriInterface
    getAuthorizationUri()
        
    
    Gets the authorization server's HTTP endpoint capable of authenticating the end-user and obtaining authorization.
        
                            string
    getTokenCredentialUri()
        
    
    Gets the authorization server's HTTP endpoint capable of issuing tokens and refreshing expired tokens.
        
        
    setTokenCredentialUri(string $uri)
        
    
    Sets the authorization server's HTTP endpoint capable of issuing tokens and refreshing expired tokens.
        
                            string
    getRedirectUri()
        
    
    Gets the redirection URI used in the initial request.
        
        
    setRedirectUri(string $uri)
        
    
    Sets the redirection URI used in the initial request.
        
                            string
    getScope()
        
    
    Gets the scope of the access requests as a space-delimited String.
        
        
    setScope(string|array $scope)
        
    
    Sets the scope of the access request, expressed either as an Array or as a space-delimited String.
        
                            string
    getGrantType()
        
    
    Gets the current grant type.
        
        
    setGrantType($grantType)
        
    
    Sets the current grant type.
        
                            string
    getState()
        
    
    Gets an arbitrary string designed to allow the client to maintain state.
        
        
    setState(string $state)
        
    
    Sets an arbitrary string designed to allow the client to maintain state.
        
        
    getCode()
        
    
    Gets the authorization code issued to this client.
        
        
    setCode(string $code)
        
    
    Sets the authorization code issued to this client.
        
        
    getUsername()
        
    
    Gets the resource owner's username.
        
        
    setUsername(string $username)
        
    
    Sets the resource owner's username.
        
        
    getPassword()
        
    
    Gets the resource owner's password.
        
        
    setPassword($password)
        
    
    Sets the resource owner's password.
        
        
    getClientId()
        
    
    Sets a unique identifier issued to the client to identify itself to the authorization server.
        
        
    setClientId($clientId)
        
    
    Sets a unique identifier issued to the client to identify itself to the authorization server.
        
        
    getClientSecret()
        
    
    Gets a shared symmetric secret issued by the authorization server, which is used to authenticate the client.
        
        
    setClientSecret($clientSecret)
        
    
    Sets a shared symmetric secret issued by the authorization server, which is used to authenticate the client.
        
        
    getIssuer()
        
    
    Gets the Issuer ID when using assertion profile.
        
        
    setIssuer(string $issuer)
        
    
    Sets the Issuer ID when using assertion profile.
        
        
    getSub()
        
    
    Gets the target sub when issuing assertions.
        
        
    setSub(string $sub)
        
    
    Sets the target sub when issuing assertions.
        
        
    getAudience()
        
    
    Gets the target audience when issuing assertions.
        
        
    setAudience(string $audience)
        
    
    Sets the target audience when issuing assertions.
        
        
    getSigningKey()
        
    
    Gets the signing key when using an assertion profile.
        
        
    setSigningKey(string $signingKey)
        
    
    Sets the signing key when using an assertion profile.
        
                            string
    getSigningAlgorithm()
        
    
    Gets the signing algorithm when using an assertion profile.
        
        
    setSigningAlgorithm(string $signingAlgorithm)
        
    
    Sets the signing algorithm when using an assertion profile.
        
        
    getExtensionParams()
        
    
    Gets the set of parameters used by extension when using an extension grant type.
        
        
    setExtensionParams($extensionParams)
        
    
    Sets the set of parameters used by extension when using an extension grant type.
        
        
    getExpiry()
        
    
    Gets the number of seconds assertions are valid for.
        
        
    setExpiry(int $expiry)
        
    
    Sets the number of seconds assertions are valid for.
        
        
    getExpiresIn()
        
    
    Gets the lifetime of the access token in seconds.
        
        
    setExpiresIn(int $expiresIn)
        
    
    Sets the lifetime of the access token in seconds.
        
                            int
    getExpiresAt()
        
    
    Gets the time the current access token expires at.
        
                            bool
    isExpired()
        
    
    Returns true if the acccess token has expired.
        
        
    setExpiresAt(int $expiresAt)
        
    
    Sets the time the current access token expires at.
        
        
    getIssuedAt()
        
    
    Gets the time the current access token was issued at.
        
        
    setIssuedAt(int $issuedAt)
        
    
    Sets the time the current access token was issued at.
        
        
    getAccessToken()
        
    
    Gets the current access token.
        
        
    setAccessToken(string $accessToken)
        
    
    Sets the current access token.
        
        
    getIdToken()
        
    
    Gets the current ID token.
        
        
    setIdToken($idToken)
        
    
    Sets the current ID token.
        
        
    getRefreshToken()
        
    
    Gets the refresh token associated with the current access token.
        
        
    setRefreshToken($refreshToken)
        
    
    Sets the refresh token associated with the current access token.
        
        
    setAdditionalClaims(array $additionalClaims)
        
    
    Sets additional claims to be included in the JWT token
        
                            array
    getAdditionalClaims()
        
    
    Gets the additional claims to be included in the JWT token.
        
                            null|array
    getLastReceivedToken()
        
    
    The expiration of the last received token.