Skip to content

Simplesd/chuanglan253-java

This branch is up to date with cl253/chuanglan253-java:master.

Repository files navigation

chuanglan253-java

================================

创蓝 SDK

快速开始

  • 添加Maven依赖
<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>fastjson</artifactId>
    <version>1.2.28</version>
</dependency>
  • 使用SmsSendDemo.java

1.填写API账号,API密码,接口地址,手机号码

2.运行main函数

    // 用户平台API账号(非登录账号,示例:N1234567)
    public static String account = "";
    // 用户平台API密码(非登录密码)
    public static String password = "";
    
    public static void main(String[] args) throws UnsupportedEncodingException {
        //请求地址请登录253云通讯自助通平台查看或者询问您的商务负责人获取
        String smsSingleRequestServerUrl = "https://xxx/msg/send/json";
        //短信内容
        String msg = "【253云通讯】你好,你的验证码是123456";
        //手机号码(群发手机号码之间使用英文逗号隔开)
        String phone = "159********";
        //状态报告
        String report= "true";

        SmsSendRequest smsSingleRequest = new SmsSendRequest(account, password, msg, phone,report);

        String requestJson = JSON.toJSONString(smsSingleRequest);

        System.out.println("before request string is: " + requestJson);

        String response = ChuangLanSmsUtil.sendSmsByPost(smsSingleRequestServerUrl, requestJson);

        System.out.println("response after request result is :" + response);

        SmsSendResponse smsSingleResponse = JSON.parseObject(response, SmsSendResponse.class);

        System.out.println("response  toString is :" + smsSingleResponse);
    }

源码说明 chuanglan253-java-sdk

  • 工程使用maven构造,jdk1.7 or higher
  • 编码要求为utf-8,请先将编辑器底层语言设置为utf-8
  • 带有特殊字符的内容无法直接提交,需先将特殊字符进行urlencode编码后方能提交
  • 开发API可参考单元测试 docx/253云通讯PaaS短信云接口说明(JSON版).docx

联系客服

创蓝客服

文档地址

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%