smsgate/client
最新稳定版本:v1.0.1
Composer 安装命令:
composer require smsgate/client
包简介
PHP Client for using SMS Gate HTTP API.
README 文档
README
This library requires a minimum PHP version of 5.6
Installation
To install the PHP client library to your project, we recommend using Composer.
composer require smsgate/client
If you're new to Composer, here are some resources that you may find useful:
- Composer's Getting Started page from Composer project's documentation.
- A Beginner's Guide to Composer from the good people at ScotchBox.
Send SMS
//use composer's autoload require 'vendor/autoload.php'; //make sure to set the real URL for bulk gate $gate = new SMSGate\Client('http://localhost:9000/bulk_server'); $sms = new SMSGate\SMSRequest; $sms ->setType(SMSGate\Client::TYPE_TEXT) ->setAuthUsername('test') ->setAuthPassword('test') ->setSender('Test Sender') ->setReceiver('41587000201') ->setText('Hello there!') ////make sure to set the real URL for your webhook handler ->setDlrUrl('http://localhost:8000/dlr.php') ->setDlrMask(SMSGate\Client::DLR_MASK_STANDARD); try { $response = $gate->send($sms); } catch (\Exception $exc) { echo "Error sending SMS with code: " . $exc->getCode() . " and message: " . $exc->getMessage(); exit; } echo "SMS sent with ID: " . $response->msgId . " and num of parts: " . $response->numParts;
Receive DLRs
//use composer's autoload require 'vendor/autoload.php'; $gate = new SMSGate\Client(''); $dlr = $gate->parseDeliveryReport(); if(!isset($dlr)){ error_log("Cannot parse DLR from the request"); exit; } error_log("Received DLR: " . json_encode($dlr));
Check examples directory for more details.
To run examples locally run from the command line
cd examples
./run_srv.sh
and then open http://localhost:8000/
统计信息
- 总下载量: 3.45k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-03-08