一、前期准备
1.注册阿里云账号
进入网址 https://www.aliyun.com/
点击免费注册,输入相关信息,则成为阿里云用户。
2.获取Access_key和Access_secret
3.签名管理与模板管理
首先点击产品与服务,选择短信服务。
我们需要关心的是应用开发这块。
分别申请签名管理和模板管理。
二、开发步骤
前面的准备工作都做完并且都申请通过后,我们可以正式进入我们的开发工作。
通过依赖阿里短信服务的SDK或者在pom文件中添加相关依赖。
SDK及Demo下载地址为:
https://help.aliyun.com/document_detail/55359.html?spm=a2c4g.11174283.6.688.68372c42X28n8r#h2-u4E0Bu8F7D3
这里建议使用在pom文件中添加相关依赖,这样比较方便。
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-core</artifactId>
<version>4.1.0</version> <!-- 注:如提示报错,先升级基础包版,无法解决可联系技术支持 -->
</dependency>
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-dysmsapi</artifactId>
<version>1.1.0</version>
</dependency>
了解一下入参与出参:
package com.xhy.xczx.sms;
import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsRequest;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.profile.DefaultProfile;
import com.aliyuncs.profile.IClientProfile;
import java.util.Random;
/**
* 〈阿里短信〉
*
* @author Barrett
* @version 1.0.0
* @time 2019/8/18
*/
public class AliSMSUtil {
//产品名称:云通信短信API产品,开发者无需替换
static final String product = "Dysmsapi";
//产品域名,开发者无需替换
static final String domain = "dysmsapi.aliyuncs.com";
// TODO 此处需要替换成开发者自己的AK(在阿里云访问控制台寻找)
static final String accessKeyId = "your accessKeyId";
static final String accessKeySecret = "your accessKeySecret"";
// 签名
static final String sign = "your signName";
public static SendSmsResponse sendSms(String mobile, String templateCode, String templateParam) throws ClientException {
//可自助调整超时时间
System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
System.setProperty("sun.net.client.defaultReadTimeout", "10000");
//初始化acsClient,暂不支持region化
IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
IAcsClient acsClient = new DefaultAcsClient(profile);
//组装请求对象-具体描述见控制台-文档部分内容
SendSmsRequest request = new SendSmsRequest();
//必填:待发送手机号
request.setPhoneNumbers(mobile);
//必填:短信签名-可在短信控制台中找到
request.setSignName(sign);
//必填:短信模板-可在短信控制台中找到
request.setTemplateCode(templateCode);
//可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
request.setTemplateParam(templateParam);
//hint 此处可能会抛出异常,注意catch
SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
return sendSmsResponse;
}
public static void main(String[] args) throws ClientException{
//发短信
String mobile = "your phoneNumber";
String templateCode = "your templateCode";
String msgCode = getMsgCode();
String templateParam = "{\"getCode\":\""+msgCode+"\", \"storeName\":\"淘宝直营店\", \"address\":\"阿里巴巴上海分公司\",\"detail\":\"{1}号仓{2}件\"}";
SendSmsResponse response = sendSms(mobile,templateCode,templateParam);
System.out.println("短信接口返回的数据----------------");
System.out.println("Code=" + response.getCode()); // OK:成功
System.out.println("Message=" + response.getMessage());
System.out.println("RequestId=" + response.getRequestId());
System.out.println("BizId=" + response.getBizId());
}
/**
* 生成随机的6位数,短信验证码
* @return
*/
private static String getMsgCode() {
int n = 6;
StringBuilder code = new StringBuilder();
Random ran = new Random();
for (int i = 0; i < n; i++) {
code.append(Integer.valueOf(ran.nextInt(10)).toString());
}
return code.toString();
}
}
对应的阿里云模板为:
将代码中的your accessKeyId和your accessKeySecret替换成你刚才申请或者已有的access_key和access_secret;your phoneNumber替换成你想要接收短信的那个手机号码;your signName替换之前申请到的签名名称;your templateCode也替换成控制台上面显示的那个code。代码中,短信验证码code为变量,里面的值可以自己定义规则生成并替换,可以是随机生成的的6位或者其他位的数字或者字母。
可以看到已经给我的手机发送短信验证码了。再看看我的阿里云余额,原来是3元,一次短信服务是0.04元,现在余额是2.96元,扣款成功。(别问我为什么这么点余额,因为穷啊,哈哈)。
如需获取更多关于SpringBoot、SpringCloud学习资料关注下面公众号,后台回复SpringBoot关键字即可领取。
在这里插入图片描述