当我想用IntelliJ运行twilio API的Java代码时,它给了我一个错误:
Exception in thread "main" java.lang.NoClassDefFoundError: com/fasterxml/jackson/databind/JsonMappingException".
我已经将twilio-7.14.5.jar添加到模块的依赖项中。
import com.twilio.Twilio;
import com.twilio.rest.api.v2010.account.Message;
import com.twilio.type.PhoneNumber;
public class main
{
public static final String ACCOUNT_SID = "AC935209d3c44660b4a550e3380249857a";
public static final String AUTH_TOKEN = "42bcd28e23344404c737eb3499d2a747";
public static void main(String[] args) {
Twilio.init(ACCOUNT_SID, AUTH_TOKEN);
Message message = Message.creator(new PhoneNumber("+13195120377"),
new PhoneNumber("+13193204088"),
"The temperature is over heat now!").create();
}
}
答案 0 :(得分:1)
您需要包含Twilio 7.4.15版本使用的所有依赖项。 maven存储库列出了所有必需的依赖项http://mvnrepository.com/artifact/com.twilio.sdk/twilio/7.14.5