手机注册(发送短信验证码)

手机注册(发送短信验证码)

去阿里开通短信服务,accesskey号然后创建签名
复制粘贴代码就可使用,根据指导修改就ok
如有报错 不能使用 还请大家谅解。(没有经过作者同意,禁止修改代码,盗用(利用代码去骗取财钱);免费供大家参考使用)
联系方式QQ:913237269,添加时请说明一下
如有问题或有帮助请评论区评论

创建一个签名
创建accesskey号

手机注册发送短信控制层(controller)

package com.ljma.web.mng.phoneregistration.controller;

import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse;
import com.aliyuncs.exceptions.ClientException;
import com.ljma.web.util.CodeUtil;
import com.ljma.web.util.SmsTool;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
import java.util.HashMap;
import java.util.Map;

/**
  * @description: 手机短信验证
  * @author 卢嘉城
  * @date 2019/7/11
  /
@RestController
@RequestMapping(value = “/phone”)
public class PhoneRegistrationController {
/
*
* 发送短信
* @param phone
* @param request
* @return
* @throws ClientException
*/
@RequestMapping(value = “/smsXxs”)
@ResponseBody
public Map<String,Object> smsXxs(String phone, HttpServletRequest request) throws ClientException {
Map<String,Object> map = new HashMap<>();
// 验证码(指定长度的随机数)
String code = CodeUtil.generateVerifyCode(6);
String TemplateParam = “{“code”:”"+code+""}";
// 短信模板id
String TemplateCode = “SMS_129650038”;//如果使用不了(模板要更换属于自己的模板。)
SendSmsResponse response = SmsTool.sendSms(phone,TemplateParam,TemplateCode);
map.put(“verifyCode”,code);
map.put(“phone”,phone);
request.getSession().setAttribute(“CodePhone”,map);
if( response.getCode().equals(“OK”)) {
map.put(“isOk”,“OK”);
}
return map;
}

}

工具类(util)

package com.ljma.web.util;

import java.util.Random;

/**
  * @description: 手机号注册验证短信
  * @author 卢嘉城
  * @date 2019/7/11
  */
public class CodeUtil {
//使用到Algerian字体,系统里没有的话需要安装字体,字体只显示大写,去掉了1,0,i,o几个容易混淆的字符
public static final String VERIFY_CODES = “1234567890”;

/**
 * 使用系统默认字符源生成验证码
 * @param verifySize    验证码长度
 * @return
 */
public static String generateVerifyCode(int verifySize){
    return generateVerifyCode(verifySize, VERIFY_CODES);
}

/**
 * 使用指定源生成验证码
 * @param verifySize    验证码长度
 * @param sources   验证码字符源
 * @return
 */
public static String generateVerifyCode(int verifySize, String sources){
    if(sources == null || sources.length() == 0){
        sources = VERIFY_CODES;
    }
    int codesLen = sources.length();
    Random rand = new Random(System.currentTimeMillis());
    StringBuilder verifyCode = new StringBuilder(verifySize);
    for(int i = 0; i < verifySize; i++){
        verifyCode.append(sources.charAt(rand.nextInt(codesLen-1)));
    }
    return verifyCode.toString();
}

public static void main(String[] args) {
    System.out.println(generateVerifyCode(4));
}

}

工具类(新建一个文件名在util下面)

package com.ljma.web.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.profile.DefaultProfile;
import com.aliyuncs.profile.IClientProfile;

/**
  * @description: 手机号注册短信验证
  * @author 卢嘉城
  * @date 2019/7/11
  */
public class SmsTool {

//产品名称:云通信短信API产品,开发者无需替换
static final String product = "Dysmsapi";
//产品域名,开发者无需替换
static final String domain = "dysmsapi.aliyuncs.com";
// TODO 此处需要替换成开发者自己的AK(在阿里云访问控制台寻找)
static final String accessKeyId = "自己的accesskey号了";
static final String accessKeySecret = "这个也是的 同样在上面截图里";
public static SendSmsResponse sendSms(String phone , String code, String TemplateCode) 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("上面截图所要创建的签名");
    //必填:短信模板-可在短信控制台中找到
    request.setTemplateCode(TemplateCode);
    //可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
    request.setTemplateParam(code);
    //选填-上行短信扩展码(无特殊需求用户请忽略此字段)
    //request.setSmsUpExtendCode("90997");
    //可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
    //request.setOutId("yourOutId");
    //hint 此处可能会抛出异常,注意catch
    SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
    return sendSmsResponse;
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值