在java中使用阿里云的短信服务进行验证码短信的发送认证
所需条件
1、阿里云账户
2、开通云通讯中的短信服务
3、申请短信签名和模板
4、创建access_key和access_secret
5、然后就是代码编写
话不啰嗦,直接开始开发步骤
开发步骤
开通短信服务
创建创建access_key和access_secret
申请短信模板和签名
开发步骤
1、创建AliyunConfig类
将其下代码拷贝进你的 springboot项目中,修改各项参数,直接调用即可
- package com.preread.user.config;
-
- 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;
-
- /**
- * @Description: 阿里云短信接口配置类
- * @author: yangxf
- * @date: 2019/4/11 15:01
- */
- public class AliyunConfig {
-
- /* 短信API产品名称(短信产品名固定,无需修改) */
- private static final String product = "Dysmsapi";
-
- /* 短信API产品域名,接口地址固定,无需修改 */
- private static final String domain = "dysmsapi.aliyuncs.com";
-
- /* 此处需要替换成开发者自己的accessKeyId和accessKeySecret(在阿里云访问控制台寻找) */
- private static final String accessKeyId = "你的accessKeyId"; //TODO: 这里要写成你自己生成的
- private static final String accessKeySecret = "你的accessKeySecret";//TODO: 这里要写成你自己生成的
-
- /* 短信发送 */
- public static SendSmsResponse sendSms(String phone) 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(phone);
- /* 必填:短信签名-可在短信控制台中找到 */
- request.setSignName("提前看"); //TODO: 这里是你短信签名
- /* 必填:短信模板code-可在短信控制台中找到 */
- request.setTemplateCode("你的模板code"); //TODO: 这里是你的模板code
- /* 可选:模板中的变量替换JSON串,如模板内容为"亲爱的用户,您的验证码为${code}"时,此处的值为 */
- request.setTemplateParam("{\"code\":\"" + getMsgCode() + "\"}");
-
- // hint 此处可能会抛出异常,注意catch
- SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
- if(sendSmsResponse.getCode()!= null && sendSmsResponse.getCode().equals("OK")){
- System.out.println("短信发送成功!验证码:" + getMsgCode());
- }else {
- System.out.println("短信发送失败!");
- }
- return sendSmsResponse;
- }
-
- /**
- * @Function: 生成验证码
- * @author: yangxf
- * @Date: 2019/4/11 15:30
- */
- 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();
- }
- }
2、controller层调用
- /**
- * @Function: 短信验证接口
- * @author: Yangxf
- * @Date: 2019/4/11 15:39
- */
- @RequestMapping("/smsverification")
- public Object SmsVerification(@Param("phone") String phone) {
- return userViewService.SmsVerification(phone);
- }
3、service层代码
- /**
- * @Function: 短信验证
- * @author: Yangxf
- * @Date: 2019/4/11 15:56
- * @param: phone 手机号
- */
- @Override
- public Map<String, Object> SmsVerification(String phone) {
- Map<String, Object> map = new HashMap<>();
- try {
- AliyunConfig.sendSms(phone);
- map.put("code", 200);
- map.put("msg", "短信验证发送成功");
- return map;
- } catch (ClientException e) {
- map.put("code", 300);
- map.put("msg", e.getMessage());
- return map;
- }
- }
4、集成阿里云SDK
- <!-- 阿里云短信SDK -->
- <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>
- <dependency>
- <groupId>joda-time</groupId>
- <artifactId>joda-time</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>1.7</version>
- </dependency>
至此代码阶段OK,可以测试了
效果如下:
觉得有收获的小伙伴留下一脚印—_—!