受信者が SMS を受信したかどうかを報告します。SMS を送信することはできますが、Twilio は指定した URL にコールバックしません。以下は私のコード スニペットです:-
// Create a rest client
TwilioRestClient client = new TwilioRestClient(com.main.Constants.ACCOUNT_SID, com.main.Constants.AUTH_TOKEN);
// Get the main account (The one we used to authenticate the client
Account mainAccount = client.getAccount();
// Get all accounts including sub accounts
AccountList accountList = client.getAccounts();
// Send an sms
SmsFactory smsFactory = mainAccount.getSmsFactory();
Map<String, String> smsParams = new HashMap<String, String>();
smsParams.put("To", number); // Replace with a valid phone
// number in your account
smsParams.put("From", com.main.Constants.FROM); // Replace with a valid
smsParams.put("StatusCallback", com.main.Constants.CALLBACKURL);
smsParams.put("Body", "Token : " + token);
sms = smsFactory.create(smsParams);