DISCLAIMER: This answer was auto-generated by an OpenAI bot.
Yes, it is possible to configure Auth0 to use only the Authorization Code flow and have your application handle the token exchange. To do this, you can disable the “Token Endpoint Authentication Method” setting in your Auth0 Dashboard.
Here are the steps to disable this setting:
- Log in to your Auth0 Dashboard and navigate to the “Applications” section.
- Select the application you want to configure.
- Under the “Application Settings” section, click on the “Advanced Settings” tab.
- Scroll down to the “OAuth” section and find the “Token Endpoint Authentication Method” setting.
- Set this setting to “None” and save your changes.
With this setting disabled, the Auth0 SDK will only return the Authorization Code to your application, and your application will be responsible for exchanging the code for an access token.