Client authorization
Last updated
Last updated
In order to access information related to your application, you must obtain an access token using the client credentials grant.
POST
https://AUTH_DOMAIN/oauth/token
Name | Type | Description |
---|---|---|
client_id
string
Your API application ID
client_secret
string
Your API application secret
scope
string
A space-separated list of authorization scopes to request. If not mentioned, it defaults to uid:read
.
You'll need to provide a token with the client.stats:read
scope in order to access application statistics for example.
grant_type
string
client_credentials