我一直在尝试使用Twilio向whatsApp发送消息,但是他们网站上的代码对我抛出异常
无效线程“ main”中的异常com.twilio.exception.ApiException:Twilio找不到具有指定“发件人”地址的频道 在com.twilio.rest.api.v2010.account.MessageCreator.create(MessageCreator.java:471) 在com.twilio.rest.api.v2010.account.MessageCreator.create(MessageCreator.java:25) 在com.twilio.base.Creator.create(Creator.java:45) 在com.lt.WhatsAppTest.main(WhatsAppTest.java:16)
这是我的代码
package com.lt;
import com.twilio.Twilio;
import com.twilio.rest.api.v2010.account.Message;
public class WhatsAppTest
{
public static final String AUTH_TOKEN = "my_token";
public static final String ACCOUNT_SID = "my_acc_SID";
public static void main(String[] args) {
Twilio.init(ACCOUNT_SID, AUTH_TOKEN);
Message message = Message.creator(
new com.twilio.type.PhoneNumber("whatsapp:to"),
new com.twilio.type.PhoneNumber("whatsapp:from"),
"Hello from your friendly neighborhood Java application!")
.create();
System.out.print(message.getDateSent().toString());
}
}
我使用了包括country code
在内的电话号码。