阿里云短信验证码平台Api(前后端分离,服务端验证码存到redis)

阿里云官网

(https://www.aliyun.com/)

依赖

com.aliyun aliyun-java-sdk-core 3.2.8 注:如提示报错,先升级基础包版,无法解决可联系技术支持 com.aliyun aliyun-java-sdk-dysmsapi 1.1.0 **

工具类

package com.beishan.util;

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

public class PhoneCode {

private static String code ;

public static void main(String[] args) {
	String phone = "手机号码"; //此处可输入你的手机号码进行测试
	getPhonemsg(phone);
	
}

/**
 * 阿里云短信服务配置
 * @param mobile
 * @return
 */
public static String getPhonemsg(String mobile) {

	/**
	 * 进行正则关系校验
	 */
	System.out.println(mobile);
	if (mobile == null || mobile == "") {
		System.out.println("手机号为空");
		return "";
	}
	/**
	 * 短信验证---阿里大于工具
	 */

	// 设置超时时间-可自行调整
	System.setProperty(StaticPeram.defaultConnectTimeout, StaticPeram.Timeout);
	System.setProperty(StaticPeram.defaultReadTimeout, StaticPeram.Timeout);
	// 初始化ascClient需要的几个参数
	final String product = StaticPeram.product;// 短信API产品名称(短信产品名固定,无需修改)
	final String domain = StaticPeram.domain;// 短信API产品域名(接口地址固定,无需修改)
	// 替换成你的AK
	final String accessKeyId = StaticPeram.accessKeyId;// 你的accessKeyId,参考本文档步骤2
	final String accessKeySecret = StaticPeram.accessKeySecret;// 你的accessKeySecret,参考本文档步骤2
	// 初始化ascClient,暂时不支持多region
	IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou",
			accessKeyId, accessKeySecret);
	try {
		DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product,
				domain);
	} catch (ClientException e1) {
		e1.printStackTrace();
	}
	
	//获取验证码
	code = vcode();
	
	IAcsClient acsClient = new DefaultAcsClient(profile);
	// 组装请求对象
	SendSmsRequest request = new SendSmsRequest();
	// 使用post提交
	request.setMethod(MethodType.POST);
	// 必填:待发送手机号。支持以逗号分隔的形式进行批量调用,批量上限为1000个手机号码,批量调用相对于单条调用及时性稍有延迟,验证码类型的短信推荐使用单条调用的方式
	request.setPhoneNumbers(mobile);
	// 必填:短信签名-可在短信控制台中找到
	request.setSignName(StaticPeram.SignName);
	// 必填:短信模板-可在短信控制台中找到
	request.setTemplateCode(StaticPeram.TemplateCode);
	// 可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
	// 友情提示:如果JSON中需要带换行符,请参照标准的JSON协议对换行符的要求,比如短信内容中包含\r\n的情况在JSON中需要表示成\\r\\n,否则会导致JSON在服务端解析失败
	request.setTemplateParam("{ \"number\":\""+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 {                                
                            //如果验证码出错,会输出错误码告诉你具体原因
                            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;
}	

}

转载至https://blog.csdn.net/qq_32196629/article/details/80062926?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-task
**
服务端把验证码存到redis,前端登录携带验证码
6.前后端分离项目的使用

前后端分离项目建议不要存储在session中,存储在redis中,redis存储需要一个key,key一同返回给前端用于验证输入:

@Controller
public class CaptchaController {
@Autowired
private RedisUtil redisUtil;

@ResponseBody
@RequestMapping("/captcha")
public JsonResult captcha(HttpServletRequest request, HttpServletResponse response) throws Exception {
    SpecCaptcha specCaptcha = new SpecCaptcha(130, 48, 5);
    String verCode = specCaptcha.text().toLowerCase();
    String key = UUID.randomUUID().toString();
    // 存入redis并设置过期时间为30分钟
    redisUtil.setEx(key, verCode, 30, TimeUnit.MINUTES);
    // 将key和base64返回给前端
    return JsonResult.ok().put("key", key).put("image", specCaptcha.toBase64());
}

@ResponseBody
@PostMapping("/login")
public JsonResult login(String username,String password,String verCode,String verKey){
    // 获取redis中的验证码
    String redisCode = redisUtil.get(verKey);
    // 判断验证码
    if (verCode==null || !redisCode.equals(verCode.trim().toLowerCase())) {
        return JsonResult.error("验证码不正确");
    }
}  

}

前端使用ajax获取验证码:


```javascript
<img id="verImg" width="130px" height="48px"/>

<script>
    var verKey;
    // 获取验证码
    $.get('/captcha', function(res) {
        verKey = res.key;
        $('#verImg').attr('src', res.image);
    },'json');
    
    // 登录
    $.post('/login', {
        verKey: verKey,
        verCode: '8u6h',
        username: 'admin',
        password: 'admin'
    }, function(res) {
        console.log(res);
    }, 'json');
</script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值