码迷,mamicode.com
首页 > 其他好文 > 详细

发送短信验证码(七牛云)

时间:2020-04-25 12:58:52      阅读:417      评论:0      收藏:0      [点我收藏+]

标签:阿里云   alt   strong   ref   hashmap   tst   auth   one   ted   

  相对阿里云来说, 使用七牛云中短信业务发送短信还是比较划算点的, 虽然他们是一家.  他们价钱差不多, 七牛云每星期会送200条系统短信, 100条推广短信. 

  再写发送短信验证码代码前, 要去七牛云配置相关的签名, 模板, 购买资源包

  七牛云申请签名

 

   技术图片

 

   七牛云申请短信模板

技术图片

  pom.xml导入jar 请看我这篇  上传文件到七牛云 的博客 (https://www.cnblogs.com/jingjiren/p/12771972.html)

  代码

//发送短信验证码
    public static HashMap<String, String> sendSms(String phone) {
        HashMap<String, String> resultMap = new HashMap<>();
        String[] phones = {phone};
//ACCESS_KEY 公钥, SECRET_KEY 私钥
        Auth auth = Auth.create(QiNiuContent.ACCESS_KEY, QiNiuContent.SECRET_KEY);
        // 实例化一个SmsManager对象
        SmsManager smsManager = new SmsManager(auth);
        String code = HBYAppUtils.code();
        try {
            Map<String, String> map = new HashMap<String, String>();
            map.put("code", code);
// TEMPLATED 七牛云短信模板ID
            Response resp = smsManager.sendMessage(QiNiuContent.TEMPLATED, phones, map);
            resultMap.put("code", code);
            resultMap.put("status", "1");
        } catch (QiniuException e) {
            e.printStackTrace();
            resultMap.put("status", "0");
            resultMap.put("code", "0");
        }
        return resultMap;
    }

  

发送短信验证码(七牛云)

标签:阿里云   alt   strong   ref   hashmap   tst   auth   one   ted   

原文地址:https://www.cnblogs.com/jingjiren/p/12772117.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!