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

大小:0.8 MB

语言:java

软件类别:JAVA短信通信接口

文档介绍:2020短信接口java