使用阿里云短信验证码API发送短信验证码(配置,获取短信验证码,注册,登录,密码重置)

获取阿里云短信验证码需要的配置信息。

如果是新用户,可以免费领取3个月,老用户的话就只能购买了,但是也不贵。

申请短信签名
申请短信签名
申请短信模板
申请短信模板

编写发送短信验证码的工具类

代码中我已经进行了详细的注释,也写了一个生成6位随机数字的方法.

如果有什么疑问,欢迎在评论里留言。

package com.imlee.examsys.utils;

import com.aliyuncs.CommonRequest;
import com.aliyuncs.CommonResponse;
import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.exceptions.ServerException;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.profile.DefaultProfile;

/**
 * @Author imlee
 * @Date 2019-08-31 14:49
 *
 * 调用阿里云短信验证码 API
 * 进行手机号码的验证
 */

public class SendSms {
   

    //  自己账号的 accessKeyId
    private static final String accessKeyId = "";
    //  自己账号的 accessKeySecret
    private static final String accessKeySecret = "";
    //  自己账号的   短信签名名称
    private static final String signName = "";
    //  自己账号的   短信模板ID
    private static final String templateCode = "";

    /**
     *         发送短信验证码
     *
      * @param telephoneNumber  用户填写的手机号码
     * @return validateCode     该用户此次操作的短信验证码
     */
    public static String sendMessage(String telephoneNumber) {
   

        //  随机生成 6位 验证码
        String validateCode = String.valueOf((int)((Math.random() * 9 + 1) * 100000));

        DefaultProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
        IAcsClient client = new DefaultAcsClient(profile);

        CommonRequest request = new CommonRequest();
        //  请求方式  POST(默认)
        request.setMethod(MethodType.POST);
        //  阿里云短信服务器(默认)
        request.setDomain("dysmsapi.aliyuncs.com");
        //  版本号(默认)
        request.setVersion("2017-05-25");
        //  执行动作  发送短信 (默认)
        request.setAction("SendSms");
        request.putQueryParameter("RegionId", "cn-hangzhou");
        request.putQueryParameter("PhoneNumbers", telephoneNumber);
        request.putQueryParameter("SignName", signName);
        request.putQueryParameter("TemplateCode", templateCode);
        request.putQueryParameter("TemplateParam", "{\"code\":" + validateCode + "}");

        try {
   
            CommonResponse response = client.getCommonResponse(request);

            System.out.println(response.getData());

        } catch (ServerException e) {
   
            e.printStackTrace();
            return "抱歉,您的当前获取次数已达上限,请于下一个时段或明天再试!";
        } catch (ClientException e
评论 22
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值