我正在使用 Twilio API 从我的 Twilio 号码向我的手机发送短信。
我有两个文件: 1. 带有表单和方法调用的 JSP 文件 2. 带有 Twilio API 的 java 类,它接收来自项目 1 的方法调用并执行发送短信部分(请参阅下面的文件)
为什么我会收到异常“发件人”电话号码是必需的?
该程序有效,交付正确,尝试了很多次。我没有收到错误。有用。只是这个例外让我感到困惑。我已经购买了 twilio 号码,所以我没有使用试用号码。
有一个与之关联的堆栈跟踪,但可以稍后发布。
在 smsParams.put("From", from) 我尝试直接用这样的单元格编号替换 from (使用有效的否): smsParams.put("From", "1231231234"); 然后我得到一个异常,它转到下一行 (smsParams.put("To", from);) 并说需要一个 "To" 号码。当我用数字替换变量时,它会跳到下一行并为消息正文提供异常。
谢谢
//***********************************
//java class MyMessage
//***********************************
package package_sms;
import java.util.HashMap;
import java.util.Map;
import com.twilio.sdk.TwilioRestClient;
import com.twilio.sdk.TwilioRestException;
import com.twilio.sdk.resource.factory.SmsFactory;
import com.twilio.sdk.resource.instance.Account;
public class MyMessage {
/** The Constant ACCOUNT_SID. */
public static final String ACCOUNT_SID = "AC11d68faa7db85a48557aa33ae0b88261";
/** The Constant AUTH_TOKEN. */
public static final String AUTH_TOKEN = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
public String to, from, text;
public void provideNumbers(String to, String from, String text)
{
// Create a rest client
TwilioRestClient client = new TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN);
// Get the main account (The one we used to authenticate the client
Account mainAccount = client.getAccount();
// Send an sms
SmsFactory smsFactory = mainAccount.getSmsFactory();
Map<String, String> smsParams = new HashMap<String, String>();
smsParams.put("From", from); // Twillio No
smsParams.put("To", to); // target phone No
smsParams.put("Body", text); // message text
try
{
smsFactory.create(smsParams);
}
catch (TwilioRestException e)
{
e.printStackTrace();
}
}
<% *****************************
// jsp file SendSms
***************************** %>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page import="package_sms.MyMessage"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>form</title>
</head>
<body style="background-color:Azure;">
<h3>Welcome to your text messenger</h3>
<form action="SendSms.jsp" name="form1" method="POST" >
From: <input type="text" name="phoneFrom" style="background-color: Beige;border:1px solid Black;"/><br><br>
To: <input type="text" name="phoneTo" style="background-color: Beige;border:1px solid Black;"/><br><br>
Message text: <input type="text" name="messageText" style="background-color: Beige;border:1px solid Black;"/><br><br>
<input type="submit" name="submit" value="Send Message" />
</form><br>
<% /* Declared string variables that provide parameters to the
call to provideNumber method. provideNumbers method is located in MyMessage class.
provideNumbers method is called on a 'message' object. */
String number_from = request.getParameter("phoneFrom");
String number_to = request.getParameter("phoneTo");
String messageBody = request.getParameter("messageText");
MyMessage message = new MyMessage();
message.provideNumbers(number_to, number_from, messageBody);
%>
</body>
</html>