Java调阿里云短信发送API接口Demo - Go语言中文社区

Java调阿里云短信发送API接口Demo


今天的需求是这样的,当工程师的任务完成之后会有一个短信提醒,so开始了调用阿里云短信发送API接口的征程。先试一下:

首先登陆阿里控制台:https://www.aliyun.com  ,接着找到短信服务(产品 -选项卡下面)


    点击-免费开通:


点击获取AK (阿里云访问秘钥):


https://help.aliyun.com/document_detail/28637.html?spm=a2c4g.11174283.4.1.cCUFQw   快速创建RAM用户

在控制台完成申请签名和模板,获取调用接口必备的参数


在添加模板的时候,需要注意,模板的格式是有规则的,后面编写Java代码时需要进行匹配,举个栗子:


常规的Java或Java Web项目,导入如下两个jar包:

aliyun-java-sdk-core-3.3.1.jar 
aliyun-java-sdk-dysmsapi-1.0.0.jar
编写发送短信的Util类:
package cn.message;


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 MoblieMessageUtil {

	
	// 产品名称:云通信短信API产品,开发者无需替换
    private static final String product = "Dysmsapi";
    // 产品域名,开发者无需替换
    private static final String domain = "dysmsapi.aliyuncs.com";

    // 此处需要替换成开发者自己的AK(在阿里云访问控制台寻找)
    private static String accessKeyId = "accessKeyId";
    private static String accessKeySecret = "accessKeySecret";
    private static String signName = "accessKeySecret";
    private static String identifyingTempleteCode = "accessKeySecret";
    private static String registTempleteCode = "accessKeySecret";

    public static void init(String accessKeyId, String accessKeySecret,String signName, String identifyingTempleteCode
    		,String registTempleteCode) {
        MoblieMessageUtil.accessKeyId = accessKeyId;
        MoblieMessageUtil.accessKeySecret = accessKeySecret;
        MoblieMessageUtil.signName = signName;
        MoblieMessageUtil.identifyingTempleteCode = identifyingTempleteCode;
        MoblieMessageUtil.registTempleteCode = registTempleteCode;
    }

    public static void main(String[] args) {
    	//第一个参数是accessKeyId ,第二个参数是accessKeySecret ,第三个参数是签名的名称,后面的参数是模板的CODE
        MoblieMessageUtil.init("accessKeyId", "accessKeySecret", "嘻嘻哈哈","SMS_135","SMS_153");
        // 发短信
        SendSmsResponse response = MoblieMessageUtil.sendIdentifyingCode("17600146600", "【code】");
        System.out.println("短信接口返回的数据----------------");
        System.out.println("Code=接口" + response.getCode());
        System.out.println("Message=" + response.getMessage());
        System.out.println("RequestId=" + response.getRequestId());
        System.out.println("BizId=" + response.getBizId());

        response = MoblieMessageUtil.sendNewUserNotice("17600146600", "张三", "123456");
        System.out.println("短信接口返回的数据----------------");
        System.out.println("Code=" + response.getCode());
        System.out.println("Message=" + response.getMessage());
        System.out.println("RequestId=" + response.getRequestId());
        System.out.println("BizId=" + response.getBizId());

    }

    public static SendSmsResponse sendSms(String mobile, String templateParam, 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(mobile);
        // 必填:短信签名-可在短信控制台中找到
        request.setSignName(signName);
        // 必填:短信模板-可在短信控制台中找到
        request.setTemplateCode(templateCode);

        // 可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
        request.setTemplateParam(templateParam);

        // 选填-上行短信扩展码(无特殊需求用户请忽略此字段)
        // request.setSmsUpExtendCode("90997");

        // 可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
        //request.setOutId("yourOutId");

        // hint 此处可能会抛出异常,注意catch
        SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);

        return sendSmsResponse;
    }

    public static SendSmsResponse sendNewUserNotice(String mobile, String username, String password) {
        try {
            return sendSms(mobile, "{"name":"" + username + "","value":"" + password + ""}",
            		registTempleteCode);
        } catch (ClientException e) {
        	throw new RuntimeException(e.getMessage());
            //throw new OrderException(e.getMessage());
        }
    }

    public static SendSmsResponse sendIdentifyingCode(String mobile, String code) {
        try {
            return sendSms(mobile, "{"name":"" + code + ""}", identifyingTempleteCode);
        } catch (ClientException e) {
        	throw new RuntimeException(e.getMessage());
            //throw new OrderException(e.getMessage());
        }
    }
}


版权声明:本文来源CSDN,感谢博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/L_K_ong/article/details/80487015
站方申明:本站部分内容来自社区用户分享,若涉及侵权,请联系站方删除。
  • 发表于 2020-06-27 22:15:58
  • 阅读 ( 1064 )
  • 分类:职场

0 条评论

请先 登录 后评论

官方社群

GO教程

猜你喜欢