Auth0
This document outlines the configuration settings for integrating Auth0 with a Serverless API Gateway.
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
Important Notes
Path Configurations
Callback Handler
Login Redirect
User Info
Last updated