0

我用 NODE.JS 创建了我的应用程序。我在本地运行我的应用程序。我想监控外呼事件。当我在本地运行我的应用程序时,我必须在出站呼叫时在 StatusCallback 中设置什么。

我正在使用这个代码片段。

    const accountSid = 'your_accountSid';
    const authToken = 'your_auth_token';
    const client = require('twilio')(accountSid, authToken);

client.calls
      .create({
         method: 'GET',
         statusCallback: '',
         statusCallbackMethod: 'POST',
         url: 'http://demo.twilio.com/docs/voice.xml',
         to: '+14155551212',
         from: '+18668675310'
       })
      .then(call => console.log(call.sid));
4

1 回答 1

0

Twilio 开发人员布道者在这里。

我们建议使用隧道程序为您的本地开发服务器提供公共 URL。我最喜欢的是ngrok,查看这篇关于如何使用 ngrok的帖子,如果你使用 VS Code,我还编写了一个插件,以便在 VS Code 中轻松使用 ngrok

于 2021-02-16T05:48:01.877 回答