このサイトで提供されているAPIを使用して、JavaWebアプリケーションからSMSを送信しようとしています。
チュートリアルに記載されている応答コードを受け取ることができません 。これはここにあります。プロジェクトにJavaバージョンのコードを使用しています。誰かが解決策を提供できますか?
応答コードは次のとおりです。
1:SMSが送信されました -1:サーバーエラー -2:無効なユーザー名 -3:無効なメッセージテキスト -4:ログインに失敗しました -5:IPブロック
コードは次のとおりです。
import java.net.*;
import java.io.*;
public class SmsSender
{
//Replace your way2sms username and password below
static final String _userName = "your way2sms username";
static final String _password = "your way2sms password";
static final String _url = "http://ubaid.tk/sms/sms.aspx";
static final String charset = "UTF-8";
//to build the query string that will send a message
private static String buildRequestString(String targetPhoneNo, String message) throws
UnsupportedEncodingException
{
String [] params = new String [5];
params[0] = _userName;
params[1] = _password;
params[2] = message;
params[3] = targetPhoneNo;
params[4] = "way2sms";
String query = String.format("uid=%s&pwd=%s&msg=%s&phone=%s&provider=%s",
URLEncoder.encode(params[0],charset),
URLEncoder.encode(params[1],charset),
URLEncoder.encode(params[2],charset),
URLEncoder.encode(params[3],charset),
URLEncoder.encode(params[4],charset)
);
return query;
}
public static void sendMessage(String reciever, String message) throws Exception
{
//To establish the connection and perform the post request
URLConnection connection = new URL(_url + "?" +
buildRequestString(reciever,message)).openConnection();
connection.setRequestProperty("Accept-Charset", charset);
//This automatically fires the request and we can use it to determine the response status
InputStream response = connection.getInputStream();
BufferedReader br = new BufferedReader(new InputStreamReader(response));
System.out.println(br.readLine());
}
public static void main(String [] args)
throws Exception
{
String testPhoneNo = "9876543210";
String testMessage = "Sending Messages From java is not too hard";
sendMessage(testPhoneNo,testMessage);
}
}