In this guide we'll cover how to secure your Express application by validating incoming requests to your Twilio webhooks are, in fact, from Twilio.
Securing your Express app with Twilio Node SDK's is simple. The Twilio SDK comes with an Express middleware which is ready to use.
Let's get started!
The Twilio Node SDK includes a webhook()
method which we can use as an Express middleware to validate incoming requests. When applied to an Express route, if the request is unauthorized the middleware will return a 403 HTTP response.
Confirm incoming requests to your Express routes are genuine with this custom middleware.
1// You can find your Twilio Auth Token here: https://www.twilio.com/console2// Set at runtime as follows:3// $ TWILIO_AUTH_TOKEN=XXXXXXXXXXXXXXXXXXX node index.js4//5// This will not work unless you set the TWILIO_AUTH_TOKEN environment6// variable.78const twilio = require('twilio');9const app = require('express')();10const bodyParser = require('body-parser');11const VoiceResponse = require('twilio').twiml.VoiceResponse;12const MessagingResponse = require('twilio').twiml.MessagingResponse;1314app.use(bodyParser.urlencoded({ extended: false }));1516app.post('/voice', twilio.webhook(), (req, res) => {17// Twilio Voice URL - receives incoming calls from Twilio18const response = new VoiceResponse();1920response.say(21`Thanks for calling!22Your phone number is ${req.body.From}. I got your call because of Twilio´s23webhook. Goodbye!`24);2526res.set('Content-Type', 'text/xml');27res.send(response.toString());28});2930app.post('/message', twilio.webhook(), (req, res) => {31// Twilio Messaging URL - receives incoming messages from Twilio32const response = new MessagingResponse();3334response.message(`Your text to me was ${req.body.Body.length} characters long.35Webhooks are neat :)`);3637res.set('Content-Type', 'text/xml');38res.send(response.toString());39});4041app.listen(3000);42
If your Twilio webhook URLs start with https://
instead of http://
, your request validator may fail locally when you use ngrok or in production if your stack terminates SSL connections upstream from your app. This is because the request URL that your Express application sees does not match the URL Twilio used to reach your application.
To fix this for local development with ngrok
, use ngrok http 3000
to accept requests on your webhooks instead of ngrok https 3000
.
If you write tests for your Express routes those tests may fail for routes where you use the Twilio request validation middleware. Any requests your test suite sends to those routes will fail the middleware validation check.
To fix this problem we recommend passing {validate: false}
to the validation middleware twilio.webhook()
thus disabling it. In Express applications it's typical to use NODE_ENV
as the value to use to determine the environment the application is running in. In the code example, when NODE_ENV
is 'test'
, the validation middleware should be disabled.
Use environment variable to disable webhook validation during testing.
1// You can find your Twilio Auth Token here: https://www.twilio.com/console2// Set at runtime as follows:3// $ TWILIO_AUTH_TOKEN=XXXXXXXXXXXXXXXXXXX node index.js4//5// This will not work unless you set the TWILIO_AUTH_TOKEN environment6// variable.78const twilio = require('twilio');9const app = require('express')();10const bodyParser = require('body-parser');11const VoiceResponse = require('twilio').twiml.VoiceResponse;12const MessagingResponse = require('twilio').twiml.MessagingResponse;1314const shouldValidate = process.env.NODE_ENV !== 'test';1516app.use(bodyParser.urlencoded({ extended: false }));1718app.post('/voice', twilio.webhook({ validate: shouldValidate }), (req, res) => {19// Twilio Voice URL - receives incoming calls from Twilio20const response = new VoiceResponse();2122response.say(23`Thanks for calling!24Your phone number is ${req.body.From}. I got your call because of Twilio´s25webhook. Goodbye!`26);2728res.set('Content-Type', 'text/xml');29res.send(response.toString());30});3132app.post(33'/message',34twilio.webhook({ validate: shouldValidate }),35(req, res) => {36// Twilio Messaging URL - receives incoming messages from Twilio37const response = new MessagingResponse();3839response.message(`Your text to me was ${req.body.Body40.length} characters long.41Webhooks are neat :)`);4243res.set('Content-Type', 'text/xml');44res.send(response.toString());45}46);4748app.listen(3000);49
Validating requests to your Twilio webhooks is a great first step for securing your Twilio application. We recommend reading over our full security documentation for more advice on protecting your app, and the Anti-Fraud Developer's Guide in particular.
To learn more about securing your Express application in general, check out the security considerations page in the official Express docs.