当我使用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,
)
);
工作没有任何问题。卷曲客户端被放置在目录中:twilio_outbound_phone_call/twilio-php-master/Twilio/Http –