Protect your Function with Basic Auth
Runtime handler version requirement
This example uses headers and cookies, which are only accessible when your Function is running @twilio/runtime-handler version 1.2.0 or later. Consult the Runtime Handler guide to learn more about the latest version and how to update.
When protecting your public Functions, and any sensitive data that they can expose, from unwanted requests and bad actors, it is important to consider some form of authentication to validate that only intended users are making requests. In this example, we'll be covering one of the most common forms of authentication: Basic Authentication.
If you want to learn an alternative approach, you can also see this example of using JWT for authentication.
Let's create a Function that will only accept requests with valid Basic Authentication, and reject all other traffic.
Before you run any of the examples on this page, create a Function and paste the example code into it. You can create a Function in the Twilio Console or by using the Serverless Toolkit.
If you prefer a UI-driven approach, complete these steps in the Twilio Console:
- Log in to the Twilio Console and navigate to Develop > Functions & Assets. If you're using the legacy Console, open the Functions tab.
- Functions are contained within Services. Click Create Service to create a new Service.
- Click Add + and select Add Function from the dropdown.
- The Console creates a new protected Function that you can rename. The filename becomes the URL path of the Function.
- Copy one of the example code snippets from this page and paste the code into your newly created Function. You can switch examples by using the dropdown menu in the code rail.
- Click Save.
- Click Deploy All to build and deploy the Function. After deployment, you can access your Function at
https://<service-name>-<random-characters>-<optional-domain-suffix>.twil.io/<function-path>
For example:test-function-3548.twil.io/hello-world.
You can now invoke your Function with HTTP requests, configure it as the webhook for a Twilio phone number, call it from a Twilio Studio Run Function Widget, and more.
First, create a new auth Service and add a Public /basic Function using the directions above.
Delete the default contents of the Function, and paste in the code snippet provided above.
Save the Function once it contains the new code.
Info
Remember to change the visibility of your new Function to be Public. By default, the Console UI will create new Functions as Protected, which will prevent access to your Function except by Twilio requests.
Next, deploy the Function by clicking on Deploy All in the Console UI.
We can check that authentication is working first by sending an unauthenticated request to our deployed Function. You can get the URL of your Function by clicking the Copy URL button next to the Function.
Then, using your client of choice, make a GET or POST request to your Function. It should return a 401 Unauthorized since the request contains no valid Authorization header.
curl -i -L -X POST 'https://auth-4173-dev.twil.io/basic'
Result:
1$ curl -i -L -X POST 'https://auth-4173-dev.twil.io/basic'23HTTP/2 4014date: Tue, 03 Aug 2021 21:55:02 GMT5content-type: application/octet-stream6content-length: 127www-authenticate: Basic realm="Authentication Required"8x-shenanigans: none910Unauthorized
Great! Requests are successfully being blocked from non-authenticated requests.
To make an authenticated request and get back a 200 OK, we'll need to generate and send a request with the example username and password encoded as the Authorization header credentials. Leverage one of the following methods to encode your Credentials:
First, open your browser's developer tools. Navigate to the Console tab, where you'll be able to execute the following JavaScript in the browser to generate your encoded credentials:
btoa("<username>:<password>");
The btoa method is a built-in browser method for conveniently converting a string to base64 encoding.
For example, with our example credentials, you would input the following into the browser console and get this result:
1btoa("twilio:ahoy!")2> "dHdpbGlvOmFob3kh"
Now that you have your encoded credentials, it's time to make an authenticated request to your Function by including them in the Authentication header.
Using cURL with our example credentials would look like this:
1curl -i -L -X POST 'https://auth-4173-dev.twil.io/basic' \2-H 'Authorization: Basic dHdpbGlvOmFob3kh'3
and the response would be:
1$ curl -i -L -X POST 'https://auth-4173-dev.twil.io/basic' \2-H 'Authorization: Basic dHdpbGlvOmFob3kh'34HTTP/2 2005date: Tue, 03 Aug 2021 22:15:37 GMT6content-type: text/plain; charset=utf87content-length: 28x-shenanigans: none9x-content-type-options: nosniff10x-xss-protection: 1; mode=block1112OK
At this point, Basic Authentication is now working for your Function!
To make this example your own, you could experiment with:
- Instead of defining the username and password directly in your Function's code, define other secure values and store them securely as Environment Variables. You could then access them using
context.USERNAMEandcontext.PASSWORDrespectively, for example. - Take things a bit further and establish a database of authenticated users with hashed passwords. Once you've retrieved the decoded username and password from the Authorization header, perform a lookup of the user by username and validate their password using a library such as bcrypt. Your hashing secret can be a secure Environment Variable.