Twilio会议语音邮件/机器检测

时间:2018-05-10 11:06:42

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

我正在构建一个应用程序,我们在会议中添加20人进行重要讨论, 并假设有一个或两个参与者(来自20人加入会议)不可用且他们的语音信箱处于活动状态, 然后在重要讨论的中间那些预先录制的语音邮件/音频开始,这对会议中的其他人来说非常烦人。 我想防止这种情况发生。

  

我尝试过使用ifMachine,但它没有帮助,MachineDetection   回调URL也没有被调用,同样也是AnsweredBy的情况。

我关注MachineDetection

我的代码如下

const Twilio = require('twilio');
const client = new Twilio(account_sid, authToken);

mobileArr.forEach(function(number,ind) {
        console.log("mobile array iteration",ind, number,'    '+twilioCallBackUrl+'twilioMachineWebhook');
        client
          .conferences(conferences.title)
          .participants.create({
            machineDetection: 'Enable',
            url:twilioMachinecallback,
            to: number,
            from: user.twilioDetails.number,
            statusCallback: twilioCallWebhook,
            statusCallbackMethod: 'POST',
            statusCallbackEvent: ['initiated', 'ringing', 'answered', 'completed'],
            Timeout: '15',
            method: 'GET',
        }, function(err, participant) {
            if (err) {
                console.error('conf failed because: '+ err + '   ' + helper.authToken + '   ' +client.accountSid);
            } else {

            }
        })
    })

我是Twilio的新手,如果我做错了,请提出建议和帮助。

2 个答案:

答案 0 :(得分:1)

Twilio开发者传道者在这里。

直接在会议中创建呼叫时participants resource does not list the machineDetection or Url parameter作为可用参数。这是因为此API呼叫直接将与会者拨入电话会议。

要处理机器检测,您需要使用常规Calls resource拨打电话。在此API请求中,您可以将machineDetection设置为Enable并设置Url。您需要使用您的网址来处理AnsweredBy参数,如果是human,则返回TwiML以将您的用户拨入<Conference><Hangup>在机器上。

让我知道这是否有帮助。

答案 1 :(得分:1)

嗯,事实证明AMD机器检测不是一个可靠的选择。

  

因此我选择了alternatives-to-amd,也称为Call Screening

这很可靠。步骤如下:

  
      
  1. 您必须创建要添加到会议中的所有呼叫。
  2.   
const Twilio = require('twilio');
const client = new Twilio(account_sid, authToken);

mobileArr.forEach(function(number,ind) {
    client.calls
        .create({
            url: 'CallScreening call url',
            from: user.twilioDetails.number,
            to: number,
            statusCallback: 'Your call status callback url',
            statusCallbackMethod: 'POST',
            statusCallbackEvent: ['initiated', 'ringing', 'answered', 'completed'],
            Timeout: '15',
            method: 'POST'
        })
        .then(call => {
            console.log(call)
    })
});
  
      
  1. 然后你必须在 url中使用聚集:'CallScreening call url'
  2.   
    const VoiceResponse = require('twilio').twiml.VoiceResponse;

    exports.callScreeningWebhook = (req, res) => {
        console.log('callScreeningWebhook');
        console.log(req.body);
        const twiml = new VoiceResponse();


        const gather = twiml.gather({
            input:'dtmf',
            timeout: 20,
            numDigits: 1,
            action: twilioCallBackUrl+'gatherAction'
        });
        gather.say('Please enter any digits to join conference');

        // Render the response as XML in reply to the webhook request
        res.type('text/xml');
        res.send(twiml.toString());
    }
  
      
  1. 然后使用Gather方法回调将所有这些调用添加到特定会议。
  2.   
exports.gatherAction = (req, res) => {
    console.log('gatherAction');

    console.log(req.body);
    const twiml = new VoiceResponse();

    if (req.body.Digits) {

        var input = parseInt(req.body.Digits)
        console.log('HEllo',typeof input);
        if (!isNaN(input)){
            console.log('JoIN conference data');
            twiml.say('You are being merged to conference');
            const dial = twiml.dial();

            dial.conference({
                statusCallbackMethod: 'POST',
                statusCallbackEvent: 'start end join leave',
                statusCallback: twilioCallBackUrl+'twilioConferenceWebhook'
                }, conference.title);
                console.log(twiml.toString());
                console.log('JoIN  Complete')

            res.type('text/xml');
            res.send(twiml.toString());
        }else{
            console.log('input parsing error');
            twiml.say('Invalid input, Please try again')
            twiml.redirect(twilioCallBackUrl+'callScreeningWebhook');
            res.type('text/xml');
            res.send(twiml.toString());
        }
    }else{
        console.log('no input');
        twiml.say('No input, Please try again')
        twiml.pause({length: 10});
        twiml.redirect(twilioCallBackUrl+'gatherFailure');
        res.type('text/xml');
        res.send(twiml.toString());
    }

}

gatherFailure 的代码如下

    exports.gatherFailure = (req, res) => {

        console.log('gatherFailure');
        console.log(req.body);
        const twiml = new VoiceResponse();
        twiml.hangup();
        res.type('text/xml');
        res.send(twiml.toString());

}

通过这种方式,通过使用聚会,任何人都可以通过电话检测是否有人接听电话并执行任何合适的操作。

再一次非常感谢 philnash