
Setup your application's code
Add the following dependencies to your requirements.txt
and run pip install -r requirements.txt
flask
requests
flask-oauthlib
six
Add the following lines to your base code
<script src="https://cdn.auth0.com/js/auth0/9.3.1/auth0.min.js"></script>
<script>
var auth = new auth0.WebAuth({domain: 'YOUR_AUTH0_DOMAIN', clientID: 'YOUR_CLIENT_ID'});
function signin() {
auth.authorize({
audience: '{YOUR_API_IDENTIFIER}',
scope: 'openid profile',
responseType: 'code',
redirectUri: 'https://YOUR_APP/callback'
});
}
</script>
<button onclick="signin()">Login</button>
Create an Application in Auth0 dashboard

Install the Custom Social Connection extension under Extensions

List the app under the Installed Extensions tab. Click on the Custom Social Connections

Create a stripeConnect (oauth2) connection under Custom Social Connections

Configure your connection settings and enable your application under the Apps tab

GET STARTED IN MINUTES
Authentication Built for Security & High Availability
Auth0 is the easiest way for developers to integrate enterprise-grade authentication and identity management to any app.
Industry Standard Compliance
SOC 2, HIPAA/BAA, EU/US Privacy Shield Framework, Open ID Certified.
Learn MoreBuilt by Security Experts
Continuously reviewed and tested by external security experts. Strong password encryption and hashing algorithms, at rest and in transit.
Learn MoreWhat Our Customers Say

Continuously reviewed and tested by external security experts. Strong password encryption and hashing algorithms, at rest and in transit.
Learn MoreGet Auth0 free for 7,000 active users per month with unlimited logins
- Single Sign On
- Passwordless Login
- Up to 2 Social Identity Providers
- Multifactor Authentication
- User Management
- Extensibility (Run custom code on Auth)