skyling / laravel-yunpian
laravel 云片网接口
dev-master
2016-09-11 08:38 UTC
Requires
- guzzlehttp/guzzle: 6.2.*
This package is not auto-updated.
Last update: 2025-01-21 11:34:26 UTC
README
配置AppKey 和SecretKey
在.env 文件中
YUNPIAN_APP_KEY:云片网Appkey
YUNPIAN_SECRET_KEY:云片网SecretKey
在config/app.php 配置文件中
在providers
数组中添加
Skyling\Yunpian\YunpianServiceProvider::class
在 aliases
数组中添加
'Yunpian' => \Skyling\Yunpian\Facade\Yunpian::class,
使用:
// 发送单条短信
Yunpian::sms()->singleSend('手机号', '短信内容文本', '回调地址');
// 发送多条短信
Yunpian::sms()->batchSend(['手机号数组'], '短信内容文本', '回调地址');
// 发送语音验证码
Yunpian::voice()->voiceSend('手机号', '验证码', '回调地址');