Explain Successful exchange of authorization code for Access Token

hi @rhuber

Take a look at the following Authorization Code flows that are integrated with Auth0
Authorization Code Flow
Authorization Code Flow with Proof Key for Code Exchange (PKCE)

When a user authenticates using one of the methods above, an authorization code is returned from Auth0. This code is then exchanged using the /oauth/token endpoint to verify the code, and creates or refreshes Auth0 sessions + return tokens.

If Auth0 is able to exchange the code successfully via the /oauth/token endpoint, this results in a Successful exchange of Authorization Code for Access Token event.

2 Likes