OAuth Token
Exchange an OAuth authorization code for an access token
Exchange an OAuth authorization code for an access token. This endpoint allows you to obtain an authentication token that can be used for subsequent API requests.
Request Body
The authorization code received from the OAuth provider
The public key for the OAuth application
The secret key for the OAuth application
The redirect URL used in the initial authorization request
Response Example
Using the Token
After obtaining the token, include it in subsequent API requests using the following headers:
The id_token
is included in the response when the openid
scope is granted, and the refresh_token
is included when the offline_access
scope is granted.
Error Responses
If the request is invalid or authentication fails, the API will return an error response:
Common error codes include:
invalid_request
: The request is missing a required parameter or is otherwise malformedinvalid_client
: Client authentication failedinvalid_grant
: The authorization code is invalid or has expiredunauthorized_client
: The client is not authorized to use this grant typeserver_error
: An unexpected error occurred on the server
Authorizations
API key for authentication
Body
The authorization code received from the OAuth provider
The public key (client ID) for the OAuth application
The secret key (client secret) for the OAuth application
The redirect URL used in the initial authorization request
Response
JWT access token signed with the project's JWKS
Type of token issued
bearer
Token expiration time in seconds (defaults to 3600 seconds/1 hour)
JWT ID token returned when openid scope is granted
Refresh token returned when offline_access scope is granted