框架:Laravel 4.2
API:Nexmo
图书馆: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'
);
?>
我的研究:
- 我已经尝试发送到菲律宾号码,我成功收到短信
- 我尝试发送到美国号码,但我没有收到任何短信,我不知道为什么。