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;