私は現在、ブラウザーからユーザーを呼び出す必要がある twilio クライアント呼び出しでスタックしています。シナリオを見てみましょう。
開始スニペット:
include 'twilio/Services/Twilio/Capability.php';
include 'twilio/Services/Twilio.php';
$accountSid = 'ACxxxxxxxxxxxxxxx';
$authToken = 'xxxxxxxxxxxxxxxxx';
$token = new Services_Twilio_Capability($accountSid, $authToken);
$token->allowClientOutgoing('APXXXXXXXXXXX');
$client = new Services_Twilio($accountSid, $authToken);
$call = $client->account->calls->create("twilio Number", "client number", "https://www.mysite.com/twilio/callback", array());
そして、私のコールバックは次のようになります:
function callback(){
$xml = "<Response><Say>Placing your call now.</Say><Dial callerId='twilio verified number' timeout='40' record='true'></Dial></Response>";
header("content-type: text/xml");
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" . $xml;
exit();
}
$from
関数内の,$to
パラメータが正確に何calls->create()
をとるのかわかりません。最初に $to then の呼び出しを開始する場合は、機能するはずです。私の要件は、ブラウザからクライアント番号にクライアントを呼び出すことです。はい、ここに参照が表示されますが、再び積み上げられています。