我是靠谱客的博主 追寻万宝路,最近开发中收集的这篇文章主要介绍阿里云的短信服务acsClient+java,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1. 开通aliyun上的短信服务,主要得到

(1)访问秘钥 accessKeyId <==>AccessKeySecret
(2)短信签名+模板code
参考官方文档

2. API测试短信发送:

参考官方文档
(1)下载sdk (原版)

        <dependency>
            <groupId>com.aliyun</groupId>
            <artifactId>aliyun-java-sdk-core</artifactId>
            <version>4.5.3</version>
        </dependency>

(2) 测试

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;
/*
pom.xml
<dependency>
  <groupId>com.aliyun</groupId>
  <artifactId>aliyun-java-sdk-core</artifactId>
  <version>4.5.16</version>
</dependency>
*/
    public  void sendSms( ) {
        // 1. 初始化acsClient
        DefaultProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret); 
        IAcsClient client = new DefaultAcsClient(profile);
        // 2. 组装请求对象
        /***
       http(s)://dysmsapi.aliyuncs.com/?Action=SendSms
	   &PhoneNumbers=1381111*****
       &SignName=阿里云
       &TemplateCode=SMS_1530****
       &<公共请求参数>
		***/
        CommonRequest request = new CommonRequest();
        request.setSysMethod(MethodType.POST);
        request.setSysDomain("dysmsapi.aliyuncs.com");  // url
        request.setSysVersion("2017-05-25");
        request.setSysAction("SendSms");
        /*****/
        request.putQueryParameter("RegionId", "cn-hangzhou");
        request.putQueryParameter("PhoneNumbers", phone);   // 待发送手机号
        request.putQueryParameter("SignName", "aliyun");  // 短信签名
        request.putQueryParameter("TemplateCode", "SMS_200191424"); // 短信模板code
        /**填充短信模板**/
        Map<String, String> params = new HashMap<>();
        params.put("station", "station");
        params.put("channel", "channel");
        params.put("alarm", "alarm");
        params.put("message", "message");
        request.putQueryParameter("TemplateParam", JSON.toJSONString(params)); // 短信模板变量对应的实际值
       	// 3. 发送请求
        try {
            CommonResponse response = client.getCommonResponse(request); 
            log.info(response.getData());
        } catch (Exception e) {
            log.error("短信发送失败:", e);
        }
    }

最后

以上就是追寻万宝路为你收集整理的阿里云的短信服务acsClient+java的全部内容,希望文章能够帮你解决阿里云的短信服务acsClient+java所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部