我用 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));