OpenID Connect Playground
The OIDC playground is for developers to test and work with OpenID Connect calls step-by-step, giving them more insight into how OpenID Connect works.
Redirect to OpenID Connect Server
01
https://openidconnectnet.us.auth0.com/authorize?
02
client_id=
03
&redirect_uri=
04
&scope=openid profile email phone address
05
&response_type=code
06
&state=
Exchange Code from Token
Now, we need to turn that access code into an access token, by having our server make a request to your token endpoint
01
POST https://openidconnectnet.us.auth0.com/oauth/token?
02
grant_type=authorization_code
03
&client_id=
04
&client_secret=
05
&redirect_uri=
06
&code=
Verify User Token
Now, we need to verify that the ID Token sent was from the correct place by validating the JWT's signature
This token is cryptographically signed. We'll validate its signature.
The token is valid!
The token is invalid. Check your parameters and try again