Twilio sandbox webhook url returning timeout execution error

前端 未结 1 1004
执念已碎
执念已碎 2021-01-26 17:08

can anyone please tell me how to increase timeout for twilio sandbox http post url. I am trying to building one programmable chat application using whatsapp twilio sandbox using

相关标签:
1条回答
  • 2021-01-26 17:56

    Twilio developer evangelist here.

    The Twilio webhook timeout is 15 seconds and it can't be changed.

    Web applications that take 20+ seconds to respond to incoming requests are not recommended in general. They ties up processes and resources on your server and may lead to other requests being dropped.

    I would recommend you do whatever work that takes more than 20 seconds in a background worker outside of the main web process. You can then respond to the webhook quickly, with an empty response and then use the REST API to send your reply message once the work is done.

    0 讨论(0)
提交回复
热议问题