content-typeRequired The content-type parameter describes the type of the content that you send in the request body. The token endpoint can only accept URL encoded content so you must set the content-type parameter to application/x-www-form-urlencoded . Example content-type: application/x-www-form-urlencoded Request body parametersgrant_typeRequired All requests to the token endpoint require the grant_type parameter in the body of the request. You must set grant_type to ‘client_credentials’. A grant type of client credentials indicates that you are using OAuth 2.0 for authorization. Example grant_type=client_credentials scopeRequired The scope parameter identifies the API for which you need a bearer access token and what level of access you will have to that API. Multiple scopes are separated by spaces. Example scope=stats client_idRequired The client ID identifies your account to the token endpoint. Example client_id=abcde client_secretRequired The secret is like a password that enables you to use the API with your account. Example client_secret=12345 Path parametersNone. Query string parametersNone. |