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
Token Decoding

Explore the contents of the returned tokens. Use the tabs to switch between them.

// Decoded tokens will appear here after request execution