一种
现在我使用 Dial 动词进行顺序拨号,但现在我希望我的应用程序执行拨号动词不起作用的呼叫,因此我需要 REST api .....
我不知道该怎么做,我是 REST 新手。使用超时是否会使其跳过行?如果超时有效,那么也许我可以完成这项工作,但除此之外我真的没有任何想法..
另外,如何在 REST 中获取通话状态?
假设我的代码看起来像这样,我将如何更改它以获取呼叫状态并设置呼叫超时?
<?php
// Include the Twilio PHP library
require 'Services/Twilio.php';
// Twilio REST API version
$version = "2010-04-01";
// Set our Account SID and AuthToken
$sid = 'AC123';
$token = 'abcd';
// A phone number you have previously validated with Twilio
$phonenumber = '4151234567';
// Instantiate a new Twilio Rest Client
$client = new Services_Twilio($sid, $token, $version);
try {
// Initiate a new outbound call
$call = $client->account->calls->create(
$phonenumber, // The number of the phone initiating the call
'5101234567', // The number of the phone receiving call
'http://demo.twilio.com/welcom/voice/'
);
echo 'Started call: ' . $call->sid;
} catch (Exception $e) {
echo 'Error: ' . $e->getMessage();
}