【问题标题】:Initiating an outbound call using Twilio Function使用 Twilio 函数发起出站呼叫
【发布时间】:2020-09-21 16:23:31
【问题描述】:
      twiml.dial(dialNode => {
      dialNode.conference('Test conference', {
        startConferenceOnEnter: true,
        endConferenceOnExit: false,
        from: context.CALLER_ID,
        to: event.TO
      })

我已在 Twilio Functions 上尝试过此操作,但这会在客户端返回错误。

【问题讨论】:

    标签: node.js twilio twilio-api twilio-node


    【解决方案1】:

    有很多 Twilio 函数示例,其中之一是进行出站调用。您可以在屏幕左侧查看示例 (under Function Examples)。

    Make a Call

    // Description
    // Make a call
    
    exports.handler = function (context, event, callback) {
      // Make sure under Functions Settings tab:
      // "Add my Twilio Credentials (ACCOUNT_SID) and (AUTH_TOKEN) to ENV" is CHECKED
    
      const twilioClient = context.getTwilioClient();
    
      // Pass in From, To, and Url as query parameters
      // Example: https://x.x.x.x/<path>?From=%2b15108675310&To=%2b15108675310&Url=http%3A%2F%2Fdemo.twilio.com%2Fdocs%2Fvoice.xml
      // Note URL encoding above
      let from = event.From || '+15095550100';
      // If passing in To, make sure to validate, to avoid placing calls to unexpected locations
      let to = event.To || '+15105550100';
      let url = event.Url || 'http://demo.twilio.com/docs/voice.xml';
    
      twilioClient.calls
        .create({
          url: url,
          from: from,
          to: to,
        })
        .then((result) => {
          console.log('Call successfully placed');
          console.log(result.sid);
          return callback(null, 'success');
        })
        .catch((error) => {
          console.log(error);
          return callback(error);
        });
    };
    

    【讨论】:

    猜你喜欢
    • 2018-01-02
    • 1970-01-01
    • 1970-01-01
    • 2017-09-06
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-08-15
    相关资源
    最近更新 更多