2

我正在构建一个应用程序,我们将 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 的新手,如果我做错了什么,请提出建议并提供帮助。

4

2 回答 2

1

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

直接在会议中创建呼叫时,参与者资源不会将machineDetectionorUrl参数列为可用参数。这是因为此 API 调用将参与者直接拨入电话会议。

要处理机器检测,您需要使用常规呼叫资源进行呼叫。在此 API 请求中,您可以设置machineDetectionEnable设置一个Url. 您需要您的 URL 能够处理该AnsweredBy参数,如果是human,则返回 TwiML 以将您的用户拨入<Conference>或仅<Hangup>在机器上。

让我知道这是否有帮助。

于 2018-05-14T04:07:07.550 回答
1

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

因此,我选择了 AMD 的替代品,也称为Call Screening

这是可靠的。步骤如下:

  1. 您必须创建要添加到会议的所有呼叫。
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'
    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方法回调将所有这些呼叫添加到特定会议。
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());
    }

}

collectFailure的代码如下

    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

于 2018-05-18T14:56:42.137 回答