フレームワーク: Laravel 4.2
API:ネクスモ
ライブラリ: christian-giupponi/nexmo https://github.com/ChristianGiupponi/Laravel-4-Nexmo
私はすでにアカウントに 10 ドルを入金しました。つまり、もうデモではありません。
<?php
$response = Nexmo::sendSMS('Amazon Company', $text_data['contact_number'], $text_data['text']);
$response = json_decode($response);
if(isset($response->body->messages[0]->{'error-text'}))
{
return array(
'status' => 'fail',
'response' => $response->body->messages[0]->{'error-text'}
);
}
return array(
'status' => 'success'
);
?>
私の研究:
- フィリピンの番号に送信してみましたが、テキストメッセージを正常に受信しました
- 米国の番号に送信しようとしましたが、テキスト メッセージを受信しませんでした。理由はわかりません。