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

发短信utils

时间:2018-01-06 19:01:30      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:class   system   tac   throws   sre   变量   手机   read   file   

package cn.itcast.bos.utils;
 
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;
 
public class SendMsgUtils {
    
    static final String product = "Dysmsapi";
        //产品域名,开发者无需替换
        static final String domain = "dysmsapi.aliyuncs.com";
 
        // TODO 此处需要替换成开发者自己的AK(在阿里云访问控制台寻找)
        static final String accessKeyId = "LTAIikyTzqO63JmM";
        static final String accessKeySecret = "owbpjtiqmuT2kmGPjSAR36E2gp3IcN";
 
        public static SendSmsResponse sendSms(String telephone,String checkcode) 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(telephone);
            //必填:短信签名-可在短信控制台中找到
            request.setSignName("孟庆龙使用短信验证注册");
            //必填:短信模板-可在短信控制台中找到
            request.setTemplateCode("SMS_109380407");
            //可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
            request.setTemplateParam("{\"numcode\":\""+checkcode+"\"}");
            //可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
            request.setOutId("yourOutId");
 
            //hint 此处可能会抛出异常,注意catch
            SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
 
            return sendSmsResponse;
        }
        
        public static void main(String[] args) throws Exception {
            SendMsgUtils.sendSms("15731012160", "123123");
        }
 
}

 

发短信utils

标签:class   system   tac   throws   sre   变量   手机   read   file   

原文地址:https://www.cnblogs.com/guanzhuang/p/8214917.html

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