OpenID Connect Debugger

Test OIDC requests and debug responses.

Crafted by Nate Barbettini

Start over

Success!

The flow was successful. The authorization server responded with an authorization code because the flow was started with the code response type.

d645336a77ed6720f13301778810481a

Step 2: Exchange code for tokens

Now you need to exchange the authorization code for tokens using the token endpoint. We can't do this step for you because it involves your client secret.

POST {tokenEndpoint} Content-Type: application/x-www-form-urlencoded   grant_type=authorization_code& code=d645336a77ed6720f13301778810481a& client_id={clientId}& client_secret={clientSecret}& redirect_uri={redirectUri}

GET request details

code=d645336a77ed6720f13301778810481ascope=openid