skyling/laravel-yunpian is a Laravel package for laravel 云片网接口.
It currently has 1 GitHub stars and 10 downloads on Packagist.
Install it with composer require skyling/laravel-yunpian.
Discover more Laravel packages by skyling
or browse all Laravel packages to compare alternatives.
Last updated
在.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('手机号', '验证码', '回调地址');