我正在将Plivo SMS API与我的java Web应用程序集成。我想通过我的应用程序发送消息。我指的是https://www.plivo.com/docs/getting-started/send-a-single-sms/链接。 以下是代码段:
String authId = "{my Auth_id}"; //Your Authentication ID
String authToken = "{my auth Token}"; //Your authentication code
RestAPI api = new RestAPI(authId, authToken, "v1");
LinkedHashMap<String, String> parameters = new LinkedHashMap<String, String>();
parameters.put("src", "+44*******"); // Sender's phone number with country code
parameters.put("dst", "+91*******"); // Receiver's phone number with country code
parameters.put("text", "Hi, text from Plivo"); // Your SMS text message
try {
// Send the message
MessageResponse msgResponse = api.sendMessage(parameters);
// Print the response
System.out.println(msgResponse);
// Print the Api ID
System.out.println("Api ID : " + msgResponse.apiId);
// Print the Response Message
System.out.println("Message : " + msgResponse.message);
if (msgResponse.serverCode == 202) {
// Print the Message UUID
System.out.println("Message UUID : " + msgResponse.messageUuids.get(0).toString());
} else {
System.out.println(msgResponse.error);
}
} catch (PlivoException e) {
System.out.println(e.getLocalizedMessage());
}
我尝试使用控制台应用程序以及Web应用程序运行此代码。我遇到异常&#34; com.plivo.helper.exception.PlivoException:与https://api.plivo.com的连接被拒绝&#34;。我的代码出了什么问题?我在这里错过了什么吗?
答案 0 :(得分:1)
Plivo销售工程师。
请检查您的防火墙设置,确保它不会阻止任何流量。另外,您使用的是Web代理吗?如果是,请确保您的应用程序正在使用此代理来处理连接。