说明:本文采用的环境为Lumen5.4,阿里大于官方SDK(非框架组件)
1. 去官网下载最新版阿里大于SDK
下载地址:最新版阿里大于SDK
2. 将SDK整合到项目中
说明: 以下存放目录可以改变,但要注意配置加载的路径,建议和我一样.
以下是我的存放目录结构:
官方SDK目录结构.png
自己封装整理的发送验证码类:
<?php
/**
* Created by cxs
* User: cxy
* Date: 17-8-1
* Time: 上午10:52
*/
namespace App\Tools\AliYun\Message;
use Aliyun\Core\Config;
use Aliyun\Core\Profile\DefaultProfile;
use Aliyun\Core\DefaultAcsClient;
use Aliyun\Api\Sms\Request\V20170525\SendSmsRequest;
use Aliyun\Api\Sms\Request\V20170525\QuerySendDetailsRequest;
use Aliyun\Core\Regions\EndpointProvider;
// 加载区域结点配置(重点,切勿忘记)
Config::load();
/**
* 用于发送验证码的类
*
* Class SendMessage
* @package App\Tools\AliYun\Message
*/
class SendMessage
{
/**
* 构造器
*
* @param string $accessKeyId 必填,AccessKeyId
* @param string $accessKeySecret 必填,AccessKeySecret
*/
public function __construct()
{
$accessKeyId = env('ACCESSKEYID');
$accessKeySecret = env('ACCESSKEYSECRET');
// 短信API产品名
$product = "Dysmsapi";
// 短信API产品域名
$domain = "dysmsapi.aliyuncs.com";
// 暂时不支持多Region
$region = "cn-hangzhou";
//$region = "cn-beijing";
// 服务结点
$endPointName = "cn-hangzhou";
// 初始化用户Profile实例
$profile = DefaultProfile::getProfile($region, $accessKeyId, $accessKeySecret);
// 增加服务结点
DefaultProfile::addEndpoint($endPointName, $region, $product, $domain);
// 初始化AcsClient用于发起请求
$this->acsClient = new DefaultAcsClient($profile);
}
/**
* 发送短信范例
*
* @param string $signName <p>
* 必填, 短信签名,应严格"签名名称"填写,参考:<a href="https://dysms.console.aliyun.com/dysms.htm#/sign">短信签名页</a>
* </p>
* @param string $templateCode <p>
* 必填, 短信模板Code,应严格按"模板CODE"填写, 参考:<a href="https://dysms.console.aliyun.com/dysms.htm#/template">短信模板页</a>
* (e.g. SMS_0001)
* </p>
* @param string $phoneNumbers 必填, 短信接收号码 (e.g. 12345678901)
* @param array|null $templateParam <p>
* 选填, 假如模板中存在变量需要替换则为必填项 (e.g. Array("code"=>"12345", "product"=>"阿里通信"))
* </p>
* @param string|null $outId [optional] 选填, 发送短信流水号 (e.g. 1234)
* @return stdClass
*/
public function sendSms($signName, $templateCode, $phoneNumbers, $templateParam = null, $outId = null) {
// 初始化SendSmsRequest实例用于设置发送短信的参数
$request = new SendSmsRequest();
// 必填,设置雉短信接收号码
$request->setPhoneNumbers($phoneNumbers);
// 必填,设置签名名称
$request->setSignName($signName);
// 必填,设置模板CODE
$request->setTemplateCode($templateCode);
// 可选,设置模板参数
if($templateParam) {
$request->setTemplateParam(json_encode($templateParam));
}
// 可选,设置流水号
if($outId) {
$request->setOutId($outId);
}
// 发起访问请求
$acsResponse = $this->acsClient->getAcsResponse($request);
// 打印请求结果
// var_dump($acsResponse);
return $acsResponse;
}
}
3. 在项目根目录的composer.json中加入sdk存放路径
composer.json.png4. 在项目根目录执行composer install
composer install
5. env文件配置
ACCESSKEYID=Access Key ID
ACCESSKEYSECRET=Access Key Secret
ALIYUN_SMS_SING=模板签名
ALIYUN_SMS_VIEW_CODE=模版CODE
6. 验证码发送飞起(在Lumen中的写法,Laravel中类似,基本上差不多)
use App\Tools\AliYun\Message\SendMessage;
/**
* 最新版阿里大于获取验证码的方法
*
* @param $phone
* @return \Illuminate\Http\Response|\Laravel\Lumen\Http\ResponseFactory
*/
public function sendSms($phone)
{
// 判断条件是否合法
if (empty($phone)) {
return ['ServerNo' => 400, 'ResultData' => '参数错误'];
}
// 验证填写手机号是否正确
$phoneNum = Common::checkCellphone($phone);
if (!$phoneNum) {
return ['ServerNo' => 400, 'ResultData' => '不正确的手机号码'];
}
// 短信签名
$smsSing = env('ALIYUN_SMS_SING');
// 短信模板编号
$smsViewId = env('ALIYUN_SMS_VIEW_CODE');
$verificationCode = rand(100000,999999);
//选填-假如模板中存在变量需要替换则为必填
$smsParams = [
"number" => "$verificationCode"
];
// 选填, 发送短信流水号
$streamNo = time();
// 调用发送短信的方法
$response = self::$sendMessage->sendSms($smsSing, $smsViewId, $phone, $smsParams, $streamNo);
if ($response->Code == 'OK' || $response->Code == 'ok') {
// 发送成功
// 存cache
$time = $_SERVER['REQUEST_TIME'] + self::$lift;
app('cache')->put(self::$tel . $phone, $verificationCode, $time);
app('log')->info(json_encode(self::$tel . $phone, $verificationCode));
app('log')->info(json_encode($verificationCode));
return ['ServerNo' => 200, 'ResultData' => $verificationCode];
} else {
// 发送失败
return ['ServerNo' => 400, 'ResultData' => '发送验证码错误!'];
}
}
网友评论