我在尝试创建将从 flex 实例调用的函数时遇到问题。问题是我得到了运行时应用程序超时错误。我知道 twilio 将如何杀死任何持续时间超过 5 秒的功能。我想做这个https://www.twilio.com/docs/runtime/functions/faq?code-sample=code-return-a-simple-successful-response&code-language=Node.js&code-sdk-version=默认但它仍然是同样的问题。
...
client.recordings.each({ callSid: callSid }, recordings => {
/* code to do with recordings (this includes another function with the client) */
}, function(err, result) {
callback(err, Response);
});