博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
云片网短信发送
阅读量:5296 次
发布时间:2019-06-14

本文共 9065 字,大约阅读时间需要 30 分钟。

云片网短信发送示例

              //---------发送短信---------------                        //模板发送的调用示例                        String baozheng = “500”;                String tel=“187xxxx2348”;                        String ENCODING = "UTF-8";                        String apikey = "xxxxxxxxxxxxxxxxxxxx";               //短信模板id                        long tpl_id=2301090;                        String result="1";                        try {
//"#code#"                 //模板参数设置 String tpl_value = URLEncoder.encode("#baozheng#",ENCODING) +"=" + URLEncoder.encode(baozheng,ENCODING);                 //发送请求 result=JavaSmsApi.tplSendSms(apikey, tpl_id, tpl_value,tel); System.out.println(result);                   //{"code":0,"msg":"发送成功","count":1,"fee":0.05,"unit":"RMB","mobile":"18702622348","sid":24192432464} JSONObject object = JSON.parseObject(result); result=object.get("code").toString(); } catch (IOException e) { e.printStackTrace(); return "100"; } //------------------------------

 ....

/** * Created by bingone on 15/12/16. */import org.apache.http.HttpEntity;import org.apache.http.NameValuePair;import org.apache.http.client.entity.UrlEncodedFormEntity;import org.apache.http.client.methods.CloseableHttpResponse;import org.apache.http.client.methods.HttpPost;import org.apache.http.impl.client.CloseableHttpClient;import org.apache.http.impl.client.HttpClients;import org.apache.http.message.BasicNameValuePair;import org.apache.http.util.EntityUtils;import java.io.IOException;import java.net.URISyntaxException;import java.net.URLEncoder;import java.util.ArrayList;import java.util.HashMap;import java.util.List;import java.util.Map;/** * 短信http接口的java代码调用示例 * 基于Apache HttpClient 4.3 * * @author songchao * @since 2015-04-03 */public class JavaSmsApi {    //查账户信息的http地址    private static String URI_GET_USER_INFO =        "https://sms.yunpian.com/v2/user/get.json";    //智能匹配模板发送接口的http地址    private static String URI_SEND_SMS =        "https://sms.yunpian.com/v2/sms/single_send.json";    //模板发送接口的http地址    private static String URI_TPL_SEND_SMS =        "https://sms.yunpian.com/v2/sms/tpl_single_send.json";    //发送语音验证码接口的http地址    private static String URI_SEND_VOICE =        "https://voice.yunpian.com/v2/voice/send.json";    //绑定主叫、被叫关系的接口http地址    private static String URI_SEND_BIND =        "https://call.yunpian.com/v2/call/bind.json";    //解绑主叫、被叫关系的接口http地址    private static String URI_SEND_UNBIND =        "https://call.yunpian.com/v2/call/unbind.json";    //编码格式。发送编码格式统一用UTF-8    private static String ENCODING = "UTF-8";    public static void main(String[] args) throws IOException,        URISyntaxException {            //修改为您的apikey.apikey可在官网(http://www.yunpian.com)登录后获取            String apikey = "xxxxxxxxxxxxxxxxxxxxx";            //修改为您要发送的手机号            String mobile = "130xxxxxxxx";            /**************** 查账户信息调用示例 *****************/            System.out.println(JavaSmsApi.getUserInfo(apikey));            /**************** 使用智能匹配模板接口发短信(推荐) *****************/            //设置您要发送的内容(内容必须和某个模板匹配。以下例子匹配的是系统提供的1号模板)            String text = "【云片网】您的验证码是1234";            //发短信调用示例            // System.out.println(JavaSmsApi.sendSms(apikey, text, mobile));            /**************** 使用指定模板接口发短信(不推荐,建议使用智能匹配模板接口) ******/            //设置模板ID,如使用1号模板:【#company#】您的验证码是#code#            long tpl_id = 1;            //设置对应的模板变量值            String tpl_value = URLEncoder.encode("#code#", ENCODING) + "=" +                URLEncoder.encode("1234", ENCODING) + "&" + URLEncoder.encode(                    "#company#", ENCODING) + "=" + URLEncoder.encode("云片网",                    ENCODING);            //模板发送的调用示例            System.out.println(tpl_value);            System.out.println(JavaSmsApi.tplSendSms(apikey, tpl_id, tpl_value,                mobile));            /**************** 使用接口发语音验证码 *****************/            String code = "1234";            //System.out.println(JavaSmsApi.sendVoice(apikey, mobile ,code));            /**************** 使用接口绑定主被叫号码 *****************/            String from = "+86130xxxxxxxx";            String to = "+86131xxxxxxxx";            Integer duration = 30 * 60; // 绑定30分钟            //System.out.println(JavaSmsApi.bindCall(apikey, from ,to , duration));            /**************** 使用接口解绑主被叫号码 *****************/            //System.out.println(JavaSmsApi.unbindCall(apikey, from, to));        }    /**     * 取账户信息     *     * @return json格式字符串     * @throws java.io.IOException     */    public static String getUserInfo(String apikey) throws IOException,        URISyntaxException {            Map < String, String > params = new HashMap < String, String > ();            params.put("apikey", apikey);            return post(URI_GET_USER_INFO, params);        }    /**     * 智能匹配模板接口发短信     *     * @param apikey apikey     * @param text    短信内容     * @param mobile  接受的手机号     * @return json格式字符串     * @throws IOException     */    public static String sendSms(String apikey, String text,         String mobile) throws IOException {        Map < String, String > params = new HashMap < String, String > ();        params.put("apikey", apikey);        params.put("text", text);        params.put("mobile", mobile);        return post(URI_SEND_SMS, params);    }    /**     * 通过模板发送短信(不推荐)     *     * @param apikey    apikey     * @param tpl_id     模板id     * @param tpl_value  模板变量值     * @param mobile     接受的手机号     * @return json格式字符串     * @throws IOException     */    public static String tplSendSms(String apikey, long tpl_id, String tpl_value,        String mobile) throws IOException {        Map < String, String > params = new HashMap < String, String > ();        params.put("apikey", apikey);        params.put("tpl_id", String.valueOf(tpl_id));        params.put("tpl_value", tpl_value);        params.put("mobile", mobile);        return post(URI_TPL_SEND_SMS, params);    }    /**     * 通过接口发送语音验证码     * @param apikey apikey     * @param mobile 接收的手机号     * @param code   验证码     * @return     */    public static String sendVoice(String apikey, String mobile, String code) {        Map < String, String > params = new HashMap < String, String > ();        params.put("apikey", apikey);        params.put("mobile", mobile);        params.put("code", code);        return post(URI_SEND_VOICE, params);    }    /**     * 通过接口绑定主被叫号码     * @param apikey apikey     * @param from 主叫     * @param to   被叫     * @param duration 有效时长,单位:秒     * @return     */    public static String bindCall(String apikey, String from, String to,        Integer duration) {        Map < String, String > params = new HashMap < String, String > ();        params.put("apikey", apikey);        params.put("from", from);        params.put("to", to);        params.put("duration", String.valueOf(duration));        return post(URI_SEND_BIND, params);    }    /**     * 通过接口解绑绑定主被叫号码     * @param apikey apikey     * @param from 主叫     * @param to   被叫     * @return     */    public static String unbindCall(String apikey, String from, String to) {        Map < String, String > params = new HashMap < String, String > ();        params.put("apikey", apikey);        params.put("from", from);        params.put("to", to);        return post(URI_SEND_UNBIND, params);    }    /**     * 基于HttpClient 4.3的通用POST方法     *     * @param url       提交的URL     * @param paramsMap 提交
<参数,值>
Map * @return 提交响应 */ public static String post(String url, Map < String, String > paramsMap) { CloseableHttpClient client = HttpClients.createDefault(); String responseText = ""; CloseableHttpResponse response = null; try { HttpPost method = new HttpPost(url); if (paramsMap != null) { List < NameValuePair > paramList = new ArrayList < NameValuePair > (); for (Map.Entry < String, String > param: paramsMap.entrySet()) { NameValuePair pair = new BasicNameValuePair(param.getKey(), param.getValue()); paramList.add(pair); } method.setEntity(new UrlEncodedFormEntity(paramList, ENCODING)); } response = client.execute(method); HttpEntity entity = response.getEntity(); if (entity != null) { responseText = EntityUtils.toString(entity, ENCODING); } } catch (Exception e) { e.printStackTrace(); } finally { try { response.close(); } catch (Exception e) { e.printStackTrace(); } } return responseText; }}

 

转载于:https://www.cnblogs.com/dztHome/p/9050692.html

你可能感兴趣的文章
Android ActionBar
查看>>
Redis集群方案Codis部署手册
查看>>
MySQL 第六天
查看>>
python 笔记一
查看>>
pip和easy_install使用方式
查看>>
数据表与简单java类(一对多的关系)
查看>>
博弈论
查看>>
CSS3 - 如何给图片增加内阴影
查看>>
Redis sentinel & cluster 原理分析
查看>>
OD使用教程3(下) - 调试篇03|解密系列
查看>>
我的工作习惯小结
查看>>
Calendar类
查看>>
把word文档中的所有图片导出
查看>>
Spring 自动装配;方法注入
查看>>
浏览器的判断;
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
Oracle 初始化参数 二三事,随记
查看>>
三维凸包模板
查看>>
zoj 2432(最长递增上升子序列)
查看>>
uva 10791
查看>>