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.

Try it now
Castle

Debugger

Mode
OpenID Connect + OAuth2

Configuration

1

Redirect to OpenID Connect Server

Request

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=

Start
2

Exchange Code from Token

Your Code

Now, we need to turn that access code into an access token, by having our server make a request to your token endpoint

Request

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=

3

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.

4

The token is valid!

The token is invalid. Check your parameters and try again

Get the openID Handbook

Download it now for free and get up-to-speed faster.

The OpenID Connect Handbook by Bruno Krebs

The OIDC playground is brought to you by Auth0

A cloud service, APIs and tools that eliminate the friction of identity for your applications and APIs.

Auth0 login form