を使用してメッセージを送信しようと、私はtwilioを使用するとしながら、私は次のエラーを取得する:致命的なエラーtwilioアピphpSDK
PHP Catchable fatal error: Argument 2 passed to Twilio\Rest\Api\V2010\Account\MessageInstance::__construct() must be of the type array, null given, called in /data/home/changliang/twilio/twilio-php-master/Twilio/Rest/Api/V2010/Account/MessageList.php on line 69 and defined in /data/home/changliang/twilio/twilio-php-master/Twilio/Rest/Api/V2010/Account/MessageInstance.php on line 52
これは私のコードです。
require_once("/twilio/twilio-php-master/Twilio/autoload.php");
use Twilio\Rest\Client;
$to = '+12022022022'
$content = 'hello';
$sid = 'XXXXXXX';
$token = 'XXXXXXXX';
$client = new Client($sid, $token);
$sms = $client->account->messages->create(
$to,
array(
'from' => '+12346788xx',
'body' => $content,
)
);
は問題なく動作します。 Curlクライアントはディレクトリに置かれます:twilio_outbound_phone_call/twilio-php-master/Twilio/Http –