2016-12-05 64 views
2

如何在Twilio中使用拨号盘功能?我正在通过浏览器拨打电话号码,拨打电话link用于扩展呼叫的拨号盘 - Twilio

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> 

如何我可以在页面中添加拨号盘,使用户应该能够进入extention或菜单选项?例如:点击1连接到销售经理。

请帮助我,如果有人知道这一点。提前致谢。

回答

1

Twilio福音传教士在这里。

查看Twilio Client for JavaScript SDK中的sendDigits函数。调用这个函数会告诉SDK播放DTMF音。

function senddigits() { 
    if (connection!=null) { 
     connection.sendDigits("1"); 
    } 
} 

希望有所帮助。