短信接口的使用

本文介绍的是在springboot项目中使用短信接口:

使用步骤:

1、在项目的pom.xml文件中引入相关的依赖:

 <dependency>
         <
groupId>org.apache.httpcomponents</groupId>
         <
artifactId>httpclient</artifactId>
         <
version>4.2.1</version>
     </
dependency>
     <
dependency>
         <
groupId>org.apache.httpcomponents</groupId>
         <
artifactId>httpcore</artifactId>
         <
version>4.2.1</version>
     </
dependency>
    <
dependency>
        <
groupId>commons-lang</groupId>
        <
artifactId>commons-lang</artifactId>
        <
version>2.6</version>
    </
dependency>   

2、 拷贝HttpUtils.java到自己的项目中,当作一个工具类来使用

* HttpUtils请从
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/src/main/java/com/aliyun/api/gateway/demo/util/HttpUtils.java
* 下载
   

3java代码测试

public static void main(String[] args) {
    String host = "http://dingxin.market.alicloudapi.com";
    String path = "/dx/sendSms";
    String method = "POST";
    String appcode = "你自己的AppCode";
    Map<String, String> headers = new HashMap<String, String>();
    //最后在header中的格式(中间是英文空格)为Authorization:APPCODE 83359fd73fe94948385f570e3c139105
    headers.put("Authorization", "APPCODE " + appcode);
    Map<String, String> querys = new HashMap<String, String>();
    querys.put("mobile", "159xxxx9999");
    querys.put("param", "code:1234");
    querys.put("tpl_id", "TP1711063");
    Map<String, String> bodys = new HashMap<String, String>();


    try {
        /**
         * 重要提示如下:
         * 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
         */
        HttpResponse response = HttpUtils.doPost(host, path, method, headers, querys, bodys);
        System.out.println(response.toString());
        //获取response的body
        //System.out.println(EntityUtils.toString(response.getEntity()));
    } catch (Exception e) {
        e.printStackTrace();
    }
}

4.修改application.yml 增加短信发送参数

sms:
 
host: http://dingxin.market.alicloudapi.com
 
path: /dx/sendSms
 
method: POST
 
appcode: b697262664*****157fc0cdb62c48  #修改为自己的appcode

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值