私は twilio を初めて使用します。私は twilio 試用アカウントを使用しており、php を使用しています。アカウントを作成し、確認コードが私の番号に送信されました。しかし、電話をかけようとすると、エラーが発生します。
エラー: 提供されたソース電話番号 +1937xxxxxx6 は、アカウントでまだ確認されていません。確認済みまたは Twilio から購入した電話番号からのみ電話をかけることができます。
これが私のコードです
<?php
// Include the Twilio PHP library
require 'twilio-php-master/Services/Twilio.php';
// Twilio REST API version
$version = "2010-04-01";
// Set our Account SID and AuthToken
$sid = 'Axxxxxxxxxxxxxxxxxxffa58';
$token = 'f878xxxxxxxxxxxxxxxeb05';
// A phone number you have previously validated with Twilio
$phonenumber = '+19xxxxxxxx6';
// Instantiate a new Twilio Rest Client
$client = new Services_Twilio($sid, $token, $version);
try {
// Initiate a new outbound call
$call = $client->account->calls->create(
$phonenumber, // The number of the phone initiating the call
'+91xxxxxxxx7', // The number of the phone receiving call
'http://demo.twilio.com/welcome/voice' // The URL Twilio will request when the call is answered
);
echo 'Started call: ' . $call->sid;
} catch (Exception $e) {
echo 'Error: ' . $e->getMessage();
}
?>