Problem statement: Is it possible to use the authorization code flow with a redirect/callback?
Solution: Due to the requirements of the OAuth specification, there is not a way to use the authorization code flow without a callback. A redirect/callback is required due to the fact that once the user authenticates, Auth0 will return the authorization_code
appended to the redirect/callback url. This is true for the authorization code flow with PKCE as well.
Reference Materials :