JAVA調用接口介紹及主要事項


如果你的網站采用的是java語音開發的那么通過java短信接口調用,從而實現網站的短信驗證碼注冊功能、密碼修改功能、APP客戶驗證碼登錄用途、預警軟硬件的及時預警信息提醒功能、在調用JAVA測試接口期間請按照相關規定測試接口,切忌測試一些違規違法短信內容,如果發現我公司鎖其賬號終止java接口調用。

1、Java短信接口測試模板:例:【速碼云信息】你的驗證碼為:smy89756 請你及時輸入驗證!

2、調用java短信接口之前請提供自己的IP地址進行IP限制。

3、在調用接口期間如有不明白可以在線咨詢我公司程序猿共同協助直至短信接口二次開發完成為止。

JAVA調用接口請求實例(復制可用)

public static String post(String path,String params) throws Exception{
BufferedReader in=null;
PrintWriter out=null;
try {
URL url=new URL(path);
httpConn=(HttpURLConnection)url.openConnection();
httpConn.setRequestMethod("POST");
httpConn.setDoInput(true);
httpConn.setDoOutput(true);
out=new PrintWriter(httpConn.getOutputStream());
out.println(params);
out.flush();
if(httpConn.getResponseCode()==HttpURLConnection.HTTP_OK){
StringBuffer content=new StringBuffer();
String tempStr="";
in=new BufferedReader(new InputStreamReader(httpConn.getInputStream()));
while((tempStr=in.readLine())!=null){
content.append(tempStr);
}
return content.toString();
}else{
throw new Exception("請求出現了問題!");
}
} catch (IOException e) {
e.printStackTrace();
}finally{
in.close();
out.close();
httpConn.disconnect();
}
]return null;
]}
public static void main(String[] args) throws Exception {
String resMessage=HttpClient.post("http://193.112.55.83:8868/sms.aspx","id=賬號&pwd=密碼&to=手機號&content="+URLEncoder.encode("內容","gb2312")+"&time="); System.out.println(resMessage);
}
}


上傳者:速碼云接口技術

分類:網站應用下載java

更新時間:2020-05-20

大?。?/span>0.8 MB

語言:java

軟件類別:JAVA短信通信接口

文檔介紹:2020短信接口java