Getting Access token via Client Credentials Grant Type
Getting Access token via Client Credentials Grant Type
The Client Credentials grant type is preffered when you are requesting an access token via a technical platform/system (via scripting), where the end-user identity is not known.
Endpoint URL: <token_endpoint>
Example: https://api.vanmarcke.com/v1/oauth/token
Authorization header: Basic authentication
Username: <client_id> (received after Application registration)
Password: <client_secret>(received after Application registration)
HTTP Headers:
Content-Type: application/x-www-form-urlencoded
HTTP Body: (x-www-form-urlencoded):
grant_type: client_credentials
Example implementation in Postman
Postman (https://www.postman.com/) is a client tool that allows you to easily test APIs.
, multiple selections available,
Related content
Get Access Token via Resource Owner Password Grant Type
Get Access Token via Resource Owner Password Grant Type
Read with this
Refresh Access Token via Refresh Token Grant Type
Refresh Access Token via Refresh Token Grant Type
Read with this
Authentication - OAuth 2.0
Authentication - OAuth 2.0
More like this
OAuth - v1
OAuth - v1
More like this
Connect via API
Connect via API
More like this
Getting Access / Application Registration
Getting Access / Application Registration
More like this