今天回头研究阿里云短信接口的时候花费了一点时间,网上的教程不太清楚,特意记录一下

首先进行一下准备工作

此处是为了拿到SMSutil里面必要的

accessKeyId以及accessKeySecret

zest实现发送验证码频率限制_阿里云


在主页找到AccessKey点击进入

zest实现发送验证码频率限制_zest实现发送验证码频率限制_02


下一步进行模板管理

zest实现发送验证码频率限制_JSON_03

此处如果有多个参数,代码中必须要给同样的参数

zest实现发送验证码频率限制_java_04


申请通过后就可以进行发送测试

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.http.MethodType;
import com.aliyuncs.profile.DefaultProfile;
import com.aliyuncs.profile.IClientProfile;

import java.util.Random;

/**
 * 短信发送工具类
 */
public class SMSUtils {
	/**
	 * 发送短信
	 * @param phoneNumbers
	 * @param
	 * @throws ClientException
	 */
	public static void sendShortMessage(String phoneNumbers) throws ClientException{
		// 设置超时时间-可自行调整
		System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
		System.setProperty("sun.net.client.defaultReadTimeout", "10000");
		// 初始化ascClient需要的几个参数
		final String product = "Dysmsapi";// 短信API产品名称(短信产品名固定,无需修改)
		final String domain = "dysmsapi.aliyuncs.com";// 短信API产品域名(接口地址固定,无需修改)
		// 替换成你的AK
		final String accessKeyId = "xxxxxxxxxxxxx";// 你的accessKeyId
		final String accessKeySecret = "xxxxxxxxxxxx";// 你的accessKeySecret
		// 初始化ascClient,暂时不支持多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();
		// 使用post提交
		request.setMethod(MethodType.POST);
		// 必填:待发送手机号。支持以逗号分隔的形式进行批量调用,批量上限为1000个手机号码,批量调用相对于单条调用及时性稍有延迟,验证码类型的短信推荐使用单条调用的方式
		request.setPhoneNumbers(phoneNumbers);
		// 必填:短信签名-可在短信控制台中找到
		request.setSignName("");
		// 必填:短信模板-可在短信控制台中找到
		request.setTemplateCode("");
		// 可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
		// 友情提示:如果JSON中需要带换行符,请参照标准的JSON协议对换行符的要求,比如短信内容中包含\r\n的情况在JSON中需要表示成\\r\\n,否则会导致JSON在服务端解析失败
		request.setTemplateParam("{\"code\":\""+getMsgCode()+"\"}");
		// 可选-上行短信扩展码(扩展码字段控制在7位或以下,无特殊需求用户请忽略此字段)
		// request.setSmsUpExtendCode("90997");
		// 可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
		// request.setOutId("yourOutId");
		// 请求失败这里会抛ClientException异常
		SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
		if (sendSmsResponse.getCode() != null && sendSmsResponse.getCode().equals("OK")) {
			// 请求成功
			System.out.println("请求成功");
		}
	}

//此处为随意生成六位验证码
	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();
	}
}

Controller层

package com.spirit.controller.v1;

import com.spirit.service.userViewService;
import org.apache.ibatis.annotations.Param;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/SMS")
public class SMSController {

    @Autowired
    userViewService userViewService;

    @RequestMapping("/smsverification")
    public Object SmsVerification(@Param("phoneNumbers") String phoneNumbers) {
        return userViewService.SmsVerification(phoneNumbers);
    }

}

Service层

package com.spirit.service;

import java.util.Map;

public interface userViewService {
    public Map<String, Object> SmsVerification(String phoneNumbers);
}

ServiceImpl

package com.spirit.service.Impl;

import com.aliyuncs.exceptions.ClientException;
import com.spirit.common.config.SMSUtils;
import com.spirit.service.userViewService;
import org.springframework.stereotype.Service;

import java.util.HashMap;
import java.util.Map;
@Service
public class userViewServiceImpl implements userViewService {
    @Override
    public Map<String, Object> SmsVerification(String phoneNumbers) {
        Map<String, Object> map = new HashMap<>();
        try {
            SMSUtils.sendShortMessage(phoneNumbers);
            map.put("code", 200);
            map.put("msg", "短信验证发送成功");
            return map;
        } catch (ClientException e) {
            map.put("code", 300);
            map.put("msg", e.getMessage());
            return map;
        }
    }
}

然后Debug进行测试

zest实现发送验证码频率限制_zest实现发送验证码频率限制_05


测试结果:

zest实现发送验证码频率限制_spring_06


zest实现发送验证码频率限制_spring_07


测试成功