πAuthentication
There are several ways to authenticate with an API; most of the time, you are expected to provide a header or query parameter to authenticate. Saloon has built helpers for the most common authentication methods to help you, but you can also create custom authenticators for advanced authentication. You can also provide defaults for authentication should you require it.
While you may opt-in to Saloon's authentication classes, it's not the only way to authenticate with Saloon. Another good method of authentication is using the defaultHeaders, defaultConfig
or defaultQuery
on your connector/request.
Available Authentication Methods
These authentication methods are available on both the connector and the request instances.
withTokenAuth($token, $prefix = 'Bearer')
Sends an
Authorization
header e.gAuthorization: Bearer your-api-key
withBasicAuth($username, $password) Uses HTTP "basic" authentication
withDigestAuth($username, $password) Uses HTTP "basic" authentication with a digest
withQueryAuth($parameter, $value) Uses a query parameter to authenticate. e.g
?api_key=your-api-key
Looking for OAuth2 authentication?
Saloon has native support for the client credentials and authorization code grant types for OAuth2. To get setup with this, head on over to the dedicated OAuth Authentication page.
Authenticating all requests
Most of the time, you use one API key for all your API requests to a service, like a personal access token or a username/password combination. Therefore, it's recommended that you use the constructor of your connector and expect an API token to be provided. This is useful if you have a different API key per user that needs to be passed into your connector.
Default authentication
Sometimes you may use a single API key in your .env file/application config, and you don't want to pass it in every time you instantiate; you may use the defaultAuth
method on your connector, and every request will be authenticated.
Authenticator Classes
Authentication on the fly
You may want to authenticate a request or a connector on the fly on a per-request or per-connector basis. You can use the authentication methods directly.
Custom Authenticators
Sometimes the API integration you are building requires multiple ways to authenticate, like a token and a certificate or perhaps authenticating an OAuth 2 API. When the built-in authentication is insufficient, You can build custom authenticators that can be transported between your application and Saloon's requests.
You may use custom authenticators in the same way as other authenticators, so you may use the defaultAuth
method or even authenticate on the fly.
Authenticating APIs that require per-request authentication
Some APIs that you will integrate with require an authentication token, such as a JWT, per request. Usually, this is quite tricky as it requires logic to wrap around your requests. Still, with Saloon, you can create a custom authenticator which makes another request to get the authentication token.
Let's start by creating a custom authenticator. This authenticator will make another request using the same connector and then authenticate the original request with the authentication token.
Unfortunately, you cannot use the authentication methods like authenticate or withTokenAuth because you cannot call authenticators inside of each other.
Next, we will use our authenticator as the default authenticator on the request. If you need to use an API token per user, you should pass a token into the constructor of the connector.
Now when we make a request, our authenticator will make an additional request to retrieve the authentication token, and then use that token in the previous request. This way you can send your request like normal.
Last updated