Client Credentials Grant
Some API providers implement the OAuth2 Client Credentials Grant for authentication. Implementing this grant type every time you create a new API integration can be tedious and time-consuming. Saloon offers a simple, extendable OAuth2 trait to help you get up and running quickly.
Prerequisites
This section of the documentation assumes that you are familiar with OAuth2 and specifically the Client Credentials Grant. If you are not familiar with how this grant type works, Auth0 has a great explanation on its website.
Flow Example
Saloon has provided methods for the full client credentials grant.
Getting Started
Let's start with preparing our connector to support the client credentials grant. All we have to do is add the ClientCredentialsGrant
trait to our connector.
After you have added the trait, you will need to tell Saloon how to authenticate with your API. First, extend the defaultOauthConfig
method and use the methods to define your client ID and secret. Saloon also has sensible defaults set for the token endpoint, but you may customize it if you need to. For example, some APIs have a different base URL than the connector's base URL. You can also provide default scopes and even provide a callback to modify the OAuth2 requests being sent.
The endpoint method, like setTokenEndpoint
on the OAuthConfig class support full URLs if you need to overwrite the base URL on the connector however you may just use the endpoint if the base URL is the same.
Overwriting the OAuth2 config
Sometimes, you may have a different OAuth2 client ID and secret for each user of your application. If your OAuth2 config is dependent on a per-user/tenant basis, it's recommended that you pass in the credentials as constructor arguments of your connector and then set the oauthConfig
inside the constructor.
In the following example, I will pass in the $clientId
and the $clientSecret
as constructor arguments and overwrite the OAuth2 config.
Creating Access Tokens
You are now ready to create access tokens. You should use the getAccessToken
method on your connector. If successful, the method will return an AccessTokenAuthenticator
. The access token and expiry (if provided) are wrapped up in a Saloon Authenticator class that can be used to authenticate your connector/requests. It acts like a DTO that can be easily serialized and transported around your application.
Once you have received the authenticator instance, you should cache it securely in your application for future use. Read further to see how you can do this.
Custom Scopes
Sometimes you may need to provide an additional "scope" to declare the level of access that your token needs. You may provide default scopes in the OauthConfig class on your connector, but you can also provide additional scopes when creating access tokens. Saloon will separate scopes with spaces but if your API integration requires scopes to be separated any other way, you can specify this with the scopeSeparator
argument.
Returning Responses
If you prefer, you may request Saloon to return a Saloon\Http\Resonse
instance instead of a AccessTokenAuthenticator
when creating access tokens. To use responses, just provide the returnResponse
argument when creating access tokens.
Authenticator Methods
The authenticator returned by Saloon when using the getAccessToken
method will contain the Access Token, and optionally an expiry date that was returned by the OAuth2 server. You can access these properties with the following methods. You can also check if the authenticator has expired, which will come in handy when refreshing access tokens.
Customising The Authenticator
Sometimes the API provider you are authenticating with may require additional information to be used in the authenticator. You can customise how the authenticator will be created by extending the createAccessTokenAuthenticator
method on your connector.
Customising How The Authenticator Is Created
Sometimes the API provider you are authenticating with may have a different way that they respond with their tokens. If you need to customise the way Saloon creates the authenticator you can extend the createOAuthAuthenticatorFromResponse
method.
Customising The Requests
Sometimes you might integrate with an API that requires additional query parameters or headers to be sent with the OAuth2 flow. You may use the requestModifier
method on the getAccessToken
method or use the setRequestModifier
method within the OAuthConfig
to add a callable that is invoked before a request is sent.
Using your own request classes
There are situations where Saloon's own request classes for getting the access token might not suit the API you are integrating with. For example, if an API uses JSON encoding instead of form encoding. You may use the following method on your connector to overwrite the instantiation process of the request class.
Last updated