当我尝试使用 Twilio REST API 发送 SMS 时出现以下错误。
HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.
代码:
require("Services/Twilio.php");
$account_sid = "ACD123456789"; // Your Twilio account sid
$auth_token = "ACD123456789"; // Your Twilio auth token
$client = new Services_Twilio($account_sid, $auth_token);
$message = $client->account->sms_messages->create(
'+1415599XXXX', // From a Twilio number in your account
'+1609531XXXX', // Text any number
"Hello world!"
);
print $message->sid;