用于分机呼叫的拨号盘 - Twilio
Dialpad for extension calling - Twilio
如何在 Twilio 中实现拨号盘功能?我正在从浏览器向引用此 link.
的 phone 号码拨打电话
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 连接到销售经理。
如果有人知道这件事,请帮助我。提前致谢。
这里是 Twilio 布道者。
查看 JavaScript SDK 的 Twilio 客户端中的 sendDigits
函数。调用此函数告诉SDK播放DTMF音。
function senddigits() {
if (connection!=null) {
connection.sendDigits("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);
});
}
});
如何在 Twilio 中实现拨号盘功能?我正在从浏览器向引用此 link.
的 phone 号码拨打电话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 连接到销售经理。
如果有人知道这件事,请帮助我。提前致谢。
这里是 Twilio 布道者。
查看 JavaScript SDK 的 Twilio 客户端中的 sendDigits
函数。调用此函数告诉SDK播放DTMF音。
function senddigits() {
if (connection!=null) {
connection.sendDigits("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);
});
}
});