POST /oauth/token
Exchanges client credentials for an access token.
Description:
Accepts form-urlencoded data. Required parameters:
client_id(string): The client's identifier.client_secret(string): The client's secret.grant_type(string): Must beclient_credentialsfor this endpoint.scope(string): A space-separated list of scopes for which the access token is requested.
Responses
| Code | Description |
|---|---|
| 200 | The access token was successfully issued. |
| 401 | Unauthorized - Invalid client credentials or grant type. |
| 404 | Not Found - The OAuth request is null. |
