API Gateway Custom Authorizer Function + Auth0
This is an example of how to protect API endpoints with auth0, JSON Web Tokens (jwt) and a custom authorizer lambda function.
Custom Authorizers allow you to run an AWS Lambda Function before your targeted AWS Lambda Function. This is useful for Microservice Architectures or when you simply want to do some Authorization before running your business logic.
View live demo
Use cases
- Protect API routes for authorized users
- Rate limiting APIs
Setup
-
npm install
json web token dependencies -
Setup an auth0 application.
-
Get your
Client ID
(underapplications->${YOUR_APP_NAME}->settings
) and plugin yourAUTH0_CLIENT_ID
in a new file calledsecrets.json
(based onsecrets.example.json
). -
Get your
public key
(underapplications->${YOUR_APP_NAME}->settings->Show Advanced Settings->Certificates->DOWNLOAD CERTIFICATE
). Download it asPEM
format and save it as a new file calledpublic_key
-
Deploy the service with
serverless deploy
and grab the public and private endpoints. -
Plugin your
AUTH0_CLIENT_ID
,AUTH0_DOMAIN
, and thePUBLIC_ENDPOINT
+PRIVATE_ENDPOINT
from aws in top of thefrontend/app.js
file.
/* frontend/app.js */// replace these values in app.jsconst AUTH0_CLIENT_ID = 'your-auth0-client-id-here';const AUTH0_DOMAIN = 'your-auth0-domain-here.auth0.com';const PUBLIC_ENDPOINT = 'https://your-aws-endpoint-here.amazonaws.com/dev/api/public';const PRIVATE_ENDPOINT = 'https://your-aws-endpoint-here.us-east-1.amazonaws.com/dev/api/private';
- Deploy Frontend to host of your choosing and make sure to configure the
Allowed Callback URL
andAllowed Origins
in your auth0 client in the auth0 dashboard. We usedhttp://auth0-serverless-protected-routes-demo.surge.sh/
for our demo.
Custom authorizer functions
Custom authorizers functions are executed before a Lambda function is executed and return an Error or a Policy document.
The Custom authorizer function is passed an event
object as below:
{ "type": "TOKEN", "authorizationToken": "<Incoming bearer token>", "methodArn": "arn:aws:execute-api:<Region id>:<Account id>:<API id>/<Stage>/<Method>/<Resource path>"}
Frontend
The frontend is a bare bones vanilla javascript implementation.
You can replace it with whatever frontend framework you like =)
If you do implement in another framework, please consider adding it our growing list of examples!
API calls are made with the browser's native fetch
api.