我想知道,如果多个经过验证的来电者ID可以拨打任何PSTN。
我已经在github上看到了server.py,使用单个no为TO no,客户端到PSTN,但是是否可以拨打电话而不是固定的已验证来电显示?
答案 0 :(得分:2)
首先,您必须按照here给出的说明验证一个号码(Say +911234568794)。
然后下载php的twilio帮助程序库。然后尝试以下代码。
require_once {Path to twilio library/}.'twilio.php';
function initiateOutboundCall($from, $to){
$sid = "{{your sid}}";
$token = "{{ auth_token }}";
$client = new Services_Twilio($sid, $token);
$call = $client->account->calls->create($from, $to, TWILIO_HANDLE_URL, array(
"Timeout" => "30",
"Method" => "GET",
"StatusCallback" => TWILIO_STATUS_CALLBACK_URL
));
return $call;
}
$from = "+911234568794"; //Your verified number
$to = "TO NUMBER HERE";
$call = initiateOutboundCall($from, $to);