Use the Client Credentials Grant to authenticate and authorize server-to-server operations
https://auth.smokeball.com/oauth2/token
with the following parameters and headers:
client_id
and client_secret
(base64-encoded).Format: Basic base64(client_id:client_secret)
.Example: Basic Y2xpZW50X2lkOmNsaWVudF9zZWNyZXQ=
application/x-www-form-urlencoded
.
Ensures the request body is properly encoded.client_credentials
for this OAuth2 flow.Indicates the request is for client credentials grant.The Authorization header must be the string “Basic” followed by your client_id and client_secret with a colon : in between, Base64 Encoded. For example, client_id:client_secret is Y2xpZW50X2lkOmNsaWVudF9zZWNyZXQ=Sample Response
See AWS Cognito Token Endpoint Documentation for more information
See Making Requests - Server-to-Server requests for details on using Client Credentials.