4
我想通過我的Android應用程序的Twitter通過Android應用
發送直接消息發送直接郵件,但我在logcat中得到以下錯誤:
java.lang.IllegalStateException:身份驗證憑據丟失。詳細請參閱http://twitter4j.org/configuration.html。
我提到http://twitter4j.org/en/code-examples.html
//instance is re-useable and thread safe.
Twitter sender = new TwitterFactory().getInstance();
DirectMessage message = sender.sendDirectMessage(recipientId, message);
System.out.println("Sent: " message.getText() + " to @" + message.getRecipientScreenName());