Twilio短信未发送PHP

时间:2019-05-09 04:56:13

标签: php twilio twilio-api

我正在尝试使用twilio发送短信,但未收到任何响应或无法发送短信 我正在使用以下代码,我错了吗?

require __DIR__ . 'Twilio/autoload.php';
use Twilio\Rest\Client;
$sid    = "xxxxxxxxxxxxxxxxxx";
$token  = "xxxxxxxxxxxxxxxxxxx";
$twilio = new Client($sid, $token);

$message = $twilio->messages
                  ->create("+91xxxxxxx", // to verified twilio number
                           array(
                               "body" => "This is the ship that made the Kessel Run in fourteen parsecs?",
                               "from" => "+xxxxxxx"
                           )
                  );
print($message->sid);

1 个答案:

答案 0 :(得分:0)

在这种情况下,可能有以下原因。

  1. 确保已启用CURL模块
  2. var_dump($ message);
  3. 尝试打印Twilio对象$ twilio以确保正确加载了库。
  4. 通过添加脚本顶部来打开php错误

    error_reporting(E_ALL);

    ini_set('display_errors','1');