Menu

Expand
Rate this page:

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.

Loading Code Sample...
        
        
        Confirm incoming requests to your Express routes are genuine with this custom middleware.

        Use Twilio webhook middleware for Express apps that validates Twilio requests

        Confirm incoming requests to your Express routes are genuine with this custom middleware.

        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.

        Loading Code Sample...
              
              
              Use environment variable to disable webhook validation during testing.

              Disable Twilio webhook middleware when testing Express routes.

              Use environment variable to disable webhook validation during testing.

              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.

              Kevin Whinnery Kat King Andrew Baker Jose Oliveros Paul Kamp
              Rate this page:

              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.

              Loading Code Sample...
                    
                    
                    

                    Thank you for your feedback!

                    Please select the reason(s) for your feedback. The additional information you provide helps us improve our documentation:

                    Sending your feedback...
                    🎉 Thank you for your feedback!
                    Something went wrong. Please try again.

                    Thanks for your feedback!

                    thanks-feedback-gif