Secure your Express app by validating incoming Twilio requests
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!
Use Twilio Express request validation middleware
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.
Use a tunnel for your local development environment in order to use live Twilio webhooks
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
.
Disable request validation during testing
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.
What’s next?
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.
Need some help?
We all do sometimes; code is hard. Get help now from our support team, or lean on the wisdom of the crowd by visiting Twilio's Stack Overflow Collective or browsing the Twilio tag on Stack Overflow.