Why Override OAuth?
- Your app name appears during authorization (not “Handled”)
- Control the scopes requested
- Use your own redirect URLs
- Manage credentials independently
Prerequisites
- Install the integration from the catalog
- Create an OAuth app with the external service
- Note your Client ID, Client Secret, and allowed scopes
Setup Steps
Enter Details
Enter:
- Redirect URL - Add this to your OAuth app’s allowed redirects
- Client ID - From your OAuth app
- Client Secret - From your OAuth app
- Scopes - Permissions to request (check the service’s API docs)
Result
When customers connect accounts:- They see your OAuth app requesting permission
- Authorization uses your credentials
- Access tokens are managed through your app
The redirect URL shown in Handled must be added to your OAuth app’s allowed redirect URLs in the external service’s developer settings.

