Twilio Studio API 和更新帐户之间的 function_sid
Twilio Studio API and updating the function_sid between accounts
当使用新的 Studio API 导入和导出 Studio 流程时 JSON 一切都正确传输,但是当从另一个帐户导入时,翻译功能出现问题。
整个流程的服务和环境sid可以替换。虽然不理想,但该过程可以自动化。真正的问题是函数 sid 。查找 function_sid 需要手动或 api 调用来检索,这使得这个过程更加复杂。
目前另一种选择是在UI中开启流量和手动select正确的功能。有更好的方法吗?
这里是 JSON 区域的一个例子,这是一个问题。
"properties": {
"service_sid": "<Your-service-sid-unique-to-account>",
"environment_sid": "<Your-environment-sid-unique-to-account/service>",
"offset": {
"x": -1230,
"y": -7330
},
"function_sid": "<Your-function-sid-unique-to-function>",
"parameters": [
{
"value": "{{trigger.message.From}}",
"key": "from"
}
],
"url": "https://<function-endpoint>.twil.io/data/<function>"
}
来自我的一位同事:
如果有多个函数调用
,我会在 Run Function Widget, that way the customer only has to update their Set Variables Widget 中使用流式语法设置 Twilio 函数的 FQDN
当使用新的 Studio API 导入和导出 Studio 流程时 JSON 一切都正确传输,但是当从另一个帐户导入时,翻译功能出现问题。
整个流程的服务和环境sid可以替换。虽然不理想,但该过程可以自动化。真正的问题是函数 sid 。查找 function_sid 需要手动或 api 调用来检索,这使得这个过程更加复杂。
目前另一种选择是在UI中开启流量和手动select正确的功能。有更好的方法吗?
这里是 JSON 区域的一个例子,这是一个问题。
"properties": {
"service_sid": "<Your-service-sid-unique-to-account>",
"environment_sid": "<Your-environment-sid-unique-to-account/service>",
"offset": {
"x": -1230,
"y": -7330
},
"function_sid": "<Your-function-sid-unique-to-function>",
"parameters": [
{
"value": "{{trigger.message.From}}",
"key": "from"
}
],
"url": "https://<function-endpoint>.twil.io/data/<function>"
}
来自我的一位同事:
如果有多个函数调用
,我会在 Run Function Widget, that way the customer only has to update their Set Variables Widget 中使用流式语法设置 Twilio 函数的 FQDN