扩展呼叫拨号盘 - Twilio

时间:2016-12-05 10:04:39

标签: php twilio twilio-api

如何在Twilio中使用拨号盘功能?我正在通过浏览器拨打电话号码来引用此link

TwiML代码:

<?php
header('Content-type: text/xml');

// put a phone number you've verified with Twilio to use as a caller ID number
$callerId = '+1xxxxxxxxx';

// put your default Twilio Client name here, for when a phone number isn't given
$number   = 'Name';

// get the phone number from the page request parameters, if given
if (isset($_REQUEST['PhoneNumber'])) {
    $number = htmlspecialchars($_REQUEST['PhoneNumber']);
}

// wrap the phone number or client name in the appropriate TwiML verb
// by checking if the number given has only digits and format symbols
if (preg_match("/^[\d\+\-\(\) ]+$/", $number)) {
    $numberOrClient = "<Number>" . $number . "</Number>";
} else {
    $numberOrClient = "<Client>" . $number . "</Client>";
}
?>
<Response>
    <Dial callerId="<?php echo $callerId ?>">
          <?php echo $numberOrClient ?>
    </Dial>
</Response>

如何在页面中添加拨号盘,以便用户能够输入扩展名或菜单选项?示例:单击1以连接到销售经理。

如果有人知道,请帮助我。提前谢谢。

1 个答案:

答案 0 :(得分:1)

这是Javascript SDK(Twilio客户端)的完整动态代码的外观。

 Twilio.Device.connect(function(connection) {

          //play DTMF tones
        if(connection!==null){
        $(document).on('click' ,'.numpad', function () {
        var number = $(this).val();
            connection.sendDigits(number);
        });
        }
});
相关问题