我正在使用Twilio帐户向用户发送短信。我已经通过执行以下命令安装了SDK。
composer require twilio/sdk
我正在使用以下代码段发送消息
public function sendSms($data) {
// Your Account SID and Auth Token from twilio.com/console
$account_sid = 'sid';
$auth_token = 'token';
$twilio_number = "number";
$client = new Client($account_sid, $auth_token);
return $client->messages->create(
$data['phone'], array(
'from' => $twilio_number,
'body' => $data['message'],
)
);
}
根据twillio文档消息应该通过此代码发送提供我的有效凭据但我收到错误
[HTTP 401]无法创建记录: Authenticate85 /无功/网络/技术/ API /供应商/ twilio / SDK / Twilio / Version.php
我已就此问题进行了研究,但我没有得到任何线索的指导?
注意:我的Twilio帐户中有余额