我正在开发一个 Web 应用程序,并且我正在使用 twilio 网关发送 SMS。我需要在我的页面上显示 SMS 的状态。如果发送了 SMS,那么它将显示已发送,否则它将显示待处理。所以请告诉我如何知道消息是否已送达。
以下是示例代码
public class Example {
public static final String ACCOUNT_SID = "AC5b8866a232v3b63bfgh0f9a872b2dfddd";
public static final String AUTH_TOKEN = "7a0068ca7d07036cbbddeba03370aujdhnm";
public static void main(String[] args) throws TwilioRestException {
TwilioRestClient client = new TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN);
Map<String, String> params = new HashMap<String, String>();
params.put("To", "+number");
params.put("From", "+number");
System.out.println(System.getProperty("java.class.path"));
SmsFactory messageFactory = client.getAccount().getSmsFactory();
Sms message = messageFactory.create(params);
}
}