私は2人の人の間で通話を設定しようとしていますが、通話できますが、電話を受けた人は録音済みのボイスメールを聞くことができます。私はこれら2人の人の間でライブの会話をしたい。私は何がURLでなければならないと私はそれを設定することができます取得していない。2人でライブ会話をするTwilioを通じて電話をかけるには?
私のサンプルPHPコードは -
require_once "application/helpers/Services/twilio-php-master/Twilio/autoload.php";
use Twilio\Rest\Client;
// Step 2: Set our AccountSid and AuthToken from https://twilio.com/console
$AccountSid = "Axxxxxxxxxxxxxxxxxxxxxc0";
$AuthToken = "xxxxxxxxxxxxxxxxxxxxxxxxx";
// Step 3: Instantiate a new Twilio Rest Client
$client = new Client($AccountSid, $AuthToken);
try {
// Initiate a new outbound call
$call = $client->account->calls->create(
// Step 4: Change the 'To' number below to whatever number you'd like
// to call.
"+91my_number",
//$_POST['to'],
// Step 5: Change the 'From' number below to be a valid Twilio number
// that you've purchased or verified with Twilio.
"+1_twilioverified_number",
// Step 6: Set the URL Twilio will request when the call is answered.
array("url" => "http://demo.twilio.com/welcome/voice/")
);
echo "Started call: " . $call->sid;
} catch (Exception $e) {
echo "Error: " . $e->getMessage();
}
はこれで私を助けることができる誰もがあります。 ありがとうございます。返信を待っています。
解決策は見つかりましたか? –