发表于: 2020-07-06 21:45:33
2 1389
今天完成的事情:任务七的短信接口
在阿里云上申请了短信接口服务,在原来的注册页面添加了手机号,邮件字符串
相对应的 代码上的 Pojo、Mapper、XML都需要更新 用了工具类
MessageUtil
public class MessageUtil {
/**
* 手机验证部分配置
*/
// 设置超时时间-可自行调整
final static String defaultConnectTimeout = "sun.net.client.defaultConnectTimeout";
final static String defaultReadTimeout = "sun.net.client.defaultReadTimeout";
final static String Timeout = "10000";
// 初始化ascClient需要的几个参数
final static String product = "Dysmsapi";// 短信API产品名称(短信产品名固定,无需修改)
final static String domain = "dysmsapi.aliyuncs.com";// 短信API产品域名(接口地址固定,无需修改)
// 替换成你的AK (产品密)
final static String accessKeyId = "******************";// 你的accessKeyId,填自己的配置
final static String accessKeySecret = "**************************";// accessKeySecret,填自己的配置
// 必填:短信签名-可在短信控制台中找到
final static String SignName = "*************"; // 阿里云配置你自己的短信签名填入
// 必填:短信模板-可在短信控制台中找到
final static String TemplateCode = "*********"; // 阿里云配置你自己的短信模板填入
}
CodeUtil
public class CodeUtil {
private static String code ;
public static void main(String[] args) {
String phone = "*************"; //此处可输入你的手机号码进行测试
getMessage(phone);
}
/**
* 阿里云短信服务配置
* @param mobile
* @return
*/
public static String getMessage(String mobile) {
/**
* 进行正则关系校验
*/
System.out.println(mobile);
if (mobile == null || mobile == "") {
System.out.println("手机号为空");
return "";
}
/**
* 短信验证---阿里云工具
*/
// 设置超时时间-可自行调整
System.setProperty(MessageUtil.defaultConnectTimeout,MessageUtil.Timeout);
System.setProperty(MessageUtil.defaultReadTimeout, MessageUtil.Timeout);
// 初始化ascClient需要的几个参数
final String product = MessageUtil.product;// 短信API产品名称(短信产品名固定,无需修改)
final String domain = MessageUtil.domain;// 短信API产品域名(接口地址固定,无需修改)
// 替换成你的AK
final String accessKeyId = MessageUtil.accessKeyId;// 你的accessKeyId
final String accessKeySecret = MessageUtil.accessKeySecret;// 你的accessKeySecret
// 初始化ascClient,暂时不支持多region 配置地区id 地区id即为 cn_%s % (所在的地区名,应该是可以细分到市级的,如cn_hangzhou)
IClientProfile profile = DefaultProfile.getProfile("cn-zhengzhou", accessKeyId, accessKeySecret);
try {
DefaultProfile.addEndpoint("cn-zhengzhou", "cn-zhengzhou", product, domain);
} catch (ClientException e) {
e.printStackTrace();
}
//获取验证码
code = vcode();
IAcsClient acsClient = new DefaultAcsClient(profile);
// 组装请求对象
SendSmsRequest request = new SendSmsRequest();
// 使用post提交
request.setMethod(MethodType.POST);
// 必填:待发送手机号。支持以逗号分隔的形式进行批量调用,批量上限为1000个手机号码,批量调用相对于单条调用及时性稍有延迟,验证码类型的短信推荐使用单条调用的方式
request.setPhoneNumbers(mobile);
// 必填:短信签名-可在短信控制台中找到
request.setSignName(MessageUtil.SignName);
// 必填:短信模板-可在短信控制台中找到
request.setTemplateCode(MessageUtil.TemplateCode);
// 可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
// 友情提示:如果JSON中需要带换行符,请参照标准的JSON协议对换行符的要求,比如短信内容中包含\r\n的情况在JSON中需要表示成\\r\\n,否则会导致JSON在服务端解析失败
// 其中 code 是 短信模板中的变量,验证码为:${number} 则 request.setTemplateParam("{ \"number\":\""+code+"\"}");
request.setTemplateParam("{ \"code\":\""+code+"\"}");
// 可选-上行短信扩展码(无特殊需求用户请忽略此字段)
// request.setSmsUpExtendCode("90997");
// 可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
request.setOutId("yourOutId");
// 请求失败这里会抛ClientException异常
SendSmsResponse sendSmsResponse;
try {
sendSmsResponse = acsClient.getAcsResponse(request);
if (sendSmsResponse.getCode() != null
&& sendSmsResponse.getCode().equals("OK")) {
// 请求成功
System.out.println("获取验证码成功!!!");
} else {
//如果验证码出错,会输出错误码告诉你具体原因
//isv.TEMPLATE_MISSING_PARAMETERS 是因为request.setTemplateParam("{ \"number\":\""+code+"\"}");中变量不匹配
//isv.AMOUNT_NOT_ENOUGH 是因为没有充钱买短信服务...
System.out.println(sendSmsResponse.getCode());
System.out.println("获取验证码失败...");
}
} catch (ServerException e) {
e.printStackTrace();
return "由于系统维护,暂时无法注册!!!";
} catch (ClientException e) {
e.printStackTrace();
return "由于系统维护,暂时无法注册!!!";
}
return "true";
}
/**
* 生成6位随机数验证码
* @return
*/
public static String vcode(){
String vcode = "";
for (int i = 0; i < 6; i++) {
vcode = vcode + (int)(Math.random() * 9);
}
return vcode;
}
}
运行了之后报错
原因是 这里的code 必须和短信模板上的变量匹配
request.setTemplateParam("{ \"code\":\""+code+"\"}");
模板详情
再次运行 还是报错
因为没有购买阿里云的短信服务。。。贫穷使我无法继续
我看了任务要求之后发现需要通过Spring配置文件完成
于是
verify.properties
#AccessKey
Message.accessKeyId=****************
Message.accessKeySecret=******************
#短信模板
Message.templateCode=*************
#短信签名
Message.SignName=芸生培训
#阿里云短信服务默认配置
Message.product=Dysmsapi
Message.domain=dysmsapi.aliyuncs.com
application.xml 配置Bean
<!--配置短信服务-->
<context:property-placeholder location="classpath:properties/verify.properties"/>
<bean id="smsBean" class="com.pojo.SmsBean">
<property name="accessKeyId" value="${Message.accessKeyId}"/>
<property name="accessKeySecret" value="${Message.accessKeySecret}"/>
<property name="signName" value="${Message.SignName}"/>
<property name="templateCode" value="${Message.templateCode}"/>
<property name="product" value="${Message.product}"/>
<property name="domain" value="${Message.domain}"/>
</bean>
明天的计划:完成service层逻辑
评论