例外' Services_Twilio_RestException'提供消息'提供的源电话号码+ 91XXXXXXXXX尚未经过验证。您只能通过已经过Twilio验证或购买的电话号码拨打电话。'
答案 0 :(得分:1)
我认为你正在使用twilio的试用版。为此,您必须在登录后首先注册您的手机号码。那么您将只能在该注册的手机号码上发送文字。
click on this link after login, you have to register that number there
require '/path/to/your/Twilio/autoload.php';
use Twilio\Rest\Client;
$sid = 'your_sid_here';
$token = 'your_token_here';
$client = new Client($sid, $token);
$from="get the sender number";
$to="registered mobile number";
$send=$client->messages->create(
$to,
array(
'from' => $from,
'body' => "your message here"
)
);
if($send)
{
print_r($send);
}
else
{
echo "message not sent";
}
尝试将此API与有效凭据一起使用。