Obtain a bearer token
POST/token
Authenticate using client credentials (OAuth 2.0 client_credentials grant).
Provide your client_id and client_secret as a Basic Authorization header:
Authorization: Basic <base64(client_id:client_secret)>
On success, cache the access_token and reuse it until expires_in seconds
have elapsed.
Request
Responses
- 200
- 401
Token issued successfully
Invalid client credentials