由于公司的客戶遍布全球乖订,最近會有一些要發(fā)送海外的短信的需求,所以今天想說下發(fā)送國際短信的功能具练,接入的手續(xù)和一般的短信驗證碼也差不太多乍构。由于之前已經(jīng)合作了互億無線短信平臺的短信驗證碼功能,那么順理成章看看他們家有沒有國際短信扛点,結(jié)果對接起來也太方便了哥遮,代碼也不怎么需要修改,接口改一下好了陵究,很方便眠饮,用了個把小時就弄完了,新功能做得飛快畔乙,現(xiàn)在送上代碼君仆,你們可以參考一下,如果也同樣接入互億無線短信平臺的朋友牲距,可以直接用哈哈返咱。
?
/**
* 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代碼調(diào)用示例
* 基于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";
//智能匹配模板發(fā)送接口的http地址
private static String URI_SEND_SMS = "https://sms.yunpian.com/v2/sms/single_send.json";
//模板發(fā)送接口的http地址
private static String URI_TPL_SEND_SMS = "https://sms.yunpian.com/v2/sms/tpl_single_send.json";
//發(fā)送語音驗證碼接口的http地址
private static String URI_SEND_VOICE = "https://voice.yunpian.com/v2/voice/send.json";
//綁定主叫、被叫關(guān)系的接口http地址
private static String URI_SEND_BIND = "https://call.yunpian.com/v2/call/bind.json";
//解綁主叫牍鞠、被叫關(guān)系的接口http地址
private static String URI_SEND_UNBIND = "https://call.yunpian.com/v2/call/unbind.json";
//編碼格式咖摹。發(fā)送編碼格式統(tǒng)一用UTF-8
private static String ENCODING = "UTF-8";
public static void main(String[] args) throws IOException, URISyntaxException {
//修改為您的apikey.apikey可在官網(wǎng)(http://www.yunpian.com)登錄后獲取
String apikey = "xxxxxxxxxxxxxxxxxxxxx";
//修改為您要發(fā)送的手機號
String mobile = "130xxxxxxxx";
/**************** 查賬戶信息調(diào)用示例 *****************/
System.out.println(JavaSmsApi.getUserInfo(apikey));
/**************** 使用智能匹配模板接口發(fā)短信(推薦) *****************/
//設(shè)置您要發(fā)送的內(nèi)容(內(nèi)容必須和某個模板匹配。以下例子匹配的是系統(tǒng)提供的1號模板)
String text = "【云片網(wǎng)】您的驗證碼是1234";
//發(fā)短信調(diào)用示例
// System.out.println(JavaSmsApi.sendSms(apikey, text, mobile));
/**************** 使用指定模板接口發(fā)短信(不推薦难述,建議使用智能匹配模板接口) *****************/
//設(shè)置模板ID萤晴,如使用1號模板:【#company#】您的驗證碼是#code#
long tpl_id = 1;
//設(shè)置對應(yīng)的模板變量值
String tpl_value = URLEncoder.encode("#code#",ENCODING) +"="
+ URLEncoder.encode("1234", ENCODING) + "&"
+ URLEncoder.encode("#company#",ENCODING) + "="
+ URLEncoder.encode("云片網(wǎng)",ENCODING);
//模板發(fā)送的調(diào)用示例
System.out.println(tpl_value);
System.out.println(JavaSmsApi.tplSendSms(apikey, tpl_id, tpl_value, mobile));
/**************** 使用接口發(fā)語音驗證碼 *****************/
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 params = new HashMap();
params.put("apikey", apikey);
return post(URI_GET_USER_INFO, params);
}
/**
* 智能匹配模板接口發(fā)短信
*
*?@param?apikey apikey
* @param text ? 短信內(nèi)容
* @param mobile 接受的手機號
* @return json格式字符串
* @throws IOException
*/
public static String sendSms(String apikey, String text, String mobile) throws IOException {
Map params = new HashMap();
params.put("apikey", apikey);
params.put("text", text);
params.put("mobile", mobile);
return post(URI_SEND_SMS, params);
}
/**
* 通過模板發(fā)送短信(不推薦)
*
* @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 params = new HashMap();
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);
}
/**
* 通過接口發(fā)送語音驗證碼
* @param apikey apikey
* @param mobile 接收的手機號
* @param code ?驗證碼
* @return
*/
public static String sendVoice(String apikey, String mobile, String code) {
Map params = new HashMap();
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 params = new HashMap();
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 params = new HashMap();
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 提交<參數(shù)赞弥,值>Map
* @return 提交響應(yīng)
*/
public static String post(String url, Map paramsMap) {
CloseableHttpClient client = HttpClients.createDefault();
String responseText = "";
CloseableHttpResponse response = null;
try {
HttpPost method = new HttpPost(url);
if (paramsMap != null) {
List paramList = new ArrayList();
for (Map.Entry 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;
}
---------------------
作者:hanjun1213
來源:CSDN
原文:https://blog.csdn.net/hanjun1213/article/details/84548751
版權(quán)聲明:本文為博主原創(chuàng)文章,轉(zhuǎn)載請附上博文鏈接峭弟!