1
Configuration

No redirect URI or user interaction needed. Just the token endpoint and client credentials.

2
Token Request Preview

This is the HTTP POST that will be sent to the token endpoint. With client credentials, the client proves its identity using its client_secret — no user authorization step needed.

POSTToken Endpoint
// Fill in config above to preview
3
Exact Request Sent by Backend

The backend confirms what it actually sent, so you can verify it matches the preview exactly.

// Will appear after executing the request
4
IdP Token Response

The IdP returns an access_token. Unlike user flows, there is typically no id_token in client credentials responses.

// Awaiting request…
5
Decoded Access Token (JWT)

The access token is typically a JWT. Its payload contains claims about the client application (not a user) such as sub, aud, iss, and roles.

// JWT will appear here after token exchange