Access Tokens
Get and use access tokens to make API calls
Step 1 - Generate an API key
Step 2 - Get an access token
$ curl -X POST \
--data-urlencode "grant_type=client_credentials" \
-d "client_id=CLIENT_ID" \
-d "client_secret=CLIENT_SECRET" \
https://<AUTH_SERVER>/realms/api-keys/protocol/openid-connect/tokenLast updated
Was this helpful?