Auth0
Configure Auth0 with Serverless API Gateway. Set up Auth0 client ID, client secret, JWKS, callback URLs, and OAuth 2.0 authorization flow.
Prerequisites
Configuration Parameters
{
"authorizer": {
"type": "auth0",
"domain": "your-auth0-domain.auth0.com",
"client_id": "your-client-id",
"client_secret": "your-client-secret",
"redirect_uri": "https://your-api-url/api/v1/auth0/callback",
"jwks": "{JSON Escaped JWKS}",
"jwks_uri": "https://your-auth0-domain.auth0.com/.well-known/jwks.json",
"scope": "openid profile email"
}
}Parameters Explained
Environment Variables and Secrets
Important Notes
Path Configurations
Callback Handler
Login Redirect
User Info
Auth0 OAuth Flow
CORS Configuration
Related Pages
Last updated