我正在使用Twilio SMS网关。我使用印度国家代码+91和我的印度电话号码。我收到错误,如屏幕截图所示。
这是我的代码:
<?php
require __DIR__ . '/vendor/autoload.php';
use Twilio\Rest\Client;
$account_sid = '#######################';
$auth_token = '#######################';
$twilio_number = '+91**********';
$client = new Client($account_sid, $auth_token);
$client->messages->create(
// Where to send a text message (your cell phone?)
'+91**********',
array(
'from' => $twilio_number,
'body' => 'I sent this message in under 10 minutes!'
)
);
?>
任何人都可以提供帮助,为什么我收到此错误?