0

1番と2番の間でライブ会話をしたい.私のコードは以下のとおりです-

<?php
require 'twilio-php-master/Twilio/autoload.php';
use Twilio\Rest\Client;
$sid = "******************";
$token = "***************"; 

$client = new Client($sid, $token);


  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.
            "Number 2",

            // Step 5: Change the 'From' number below to be a valid Twilio number 
            // that you've purchased or verified with Twilio.
            "Number 1",

            // Step 6: Set the URL Twilio will request when the call is answered.
            array("url" => "twiml_url")
        );
        echo "Started call: " . $call->sid;
    } catch (Exception $e) {
        echo "Error: " . $e->getMessage();

?>

私のtwiMLを以下に示します-

    <?xml version="1.0" encoding="UTF-8"?>
<Response>
  <Dial callerId="Number 1">
      <Number>Number 2</Number>
  </Dial>
</Response>

ブラウザーでこの REST API をヒットすると、携帯電話に電話がかかってきますが、試用アカウント メッセージの後に電話が切断されます。私を助けてください。

4

1 に答える 1