Springboot集成阿里短信相关

一.定义配置文件

AppKey:     xxxx

AppSecret:xxxxx

AppCode:xxxxx

二.具体调用


/**
             * 重要提示如下:
             * HttpUtils请从
             * https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/src/main/java/com/aliyun/api/gateway/demo/util/HttpUtils.java
             * 下载
             *
             * 相应的依赖请参照
             * https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/pom.xml
             */
//发送短信
        String host = "https://cxkjsms.market.alicloudapi.com";
        String path = "/chuangxinsms/dxjk";
        String method = "POST";
        Map<String, String> headers = new HashMap<String, String>();
        //最后在header中的格式(中间是英文空格)为Authorization:APPCODE xxx
        headers.put("Authorization", "APPCODE " + appcode);
        Map<String, String> querys = new HashMap<String, String>();
        Random randObj = new Random();
        String msgCode=Integer.toString(100000 + randObj.nextInt(900000));
        String uuid = IdUtils.simpleUUID();
      
       querys.put("content", "【xxxxx】验证码为:"+msgCode+",您正在使用手机APP动态验证码进行用户登录,如非本人操作,请忽略该短信。本条短信免费。");
            
        querys.put("mobile", phone);
        Map<String, String> bodys = new HashMap<String, String>();
        try {
            HttpResponse response = SmsHttpUtils.doPost(host, path, method, headers, querys, bodys);
            System.out.println(response.toString());
            //获取response的body
            String body = EntityUtils.toString(response.getEntity());
            JSONObject jsonObject = JSONObject.parseObject(body);
            String status = jsonObject.get("ReturnStatus").toString();
            if ("Success".equals(status)) {
                String verifyKey = CacheConstants.SMS_CODE_KEY + uuid;
                redisCache.setCacheObject(verifyKey, msgCode, Constants.SMS_EXPIRATION, TimeUnit.MINUTES);
                ajax.put("uuid", uuid);
                return ajax;
            }else{
                throw new ServiceException("发送失败");
            }
        } catch (Exception e) {
            throw new ServiceException("发送失败");
        }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值