Twilio Studio 函数参数

Twilio Studio Function Parameter

我正在尝试使用 Twilio Studio 将参数传递给流中的函数。我可以将参数添加到函数小部件没有问题,但是如何在函数中检索参数?

工作室截图

我已经尝试查看日志,但无法弄清楚如何引用该参数。

参数是event对象的属性,可以用点号访问。在你的情况下是这样的:

exports.handler = function(context, event, callback) {

    const test = event.Test; 

    // your function code here...


};