두 사람 사이에 전화를 설정하려고하는데 전화를 걸 수 있지만 전화를받은 사람이 미리 녹음 된 음성 메일을들을 수 있습니다. 나는이 두 사람 사이에서 생생한 대화를 나누고 싶다. 나는 무엇이 URL이어야하는지, 어떻게 설정해야하는지 알지 못한다.두 사람이 실시간 대화를 나누는 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();
}
이 좀 도와 수있는 사람이 있습니까. 미리 감사드립니다. 회신을 기다리고 있습니다.
해결책을 찾았습니까? –