このページに示されている指示に従おうとしています: https://www.twilio.com/docs/api/rest/outgoing-caller-ids をverify
番号に追加し、その番号をcaller ID
.
しかし、ブラウザで PHP ページを開くとValidationCode
、電話で入力できるページが表示されません。
私のアカウントは完全なアカウントであり、クレジットがあるため、問題はありません。
また、PHPページを開くと、電話番号が鳴りますが、上で述べたように、番号を確認するために使用できる確認コードがPHPページに表示されません!
これは、上記のページから使用しているコードです。
<?php
// Get the PHP helper library from twilio.com/docs/php/install
require_once('path/to/Services/Twilio.php'); // Loads the library
// Your Account Sid and Auth Token from twilio.com/user/account
$sid = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$token = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$client = new Services_Twilio($sid, $token);
$caller_id = $client->account->outgoing_caller_ids->create("+44myphonenumber", array(
"FriendlyName" => "Michelle"
));
echo $caller_id->sid;
?>
誰かがこの問題についてアドバイスしてもらえますか?