我正在尝试从我的 Android 应用程序发送直接消息。为此,我在 Google 上搜索并从链接中找到了以下解决方案。在那个 Twitter4j 中,我找到了代码片段。我也在我的 Android 应用程序中尝试过相同的方法,但遇到了问题:
http://twitter4j.org/en/code-examples.html
// The factory 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());
Issue :
**10-10 20:04:26.440: E/AndroidRuntime(6935): java.lang.IllegalStateException: Authentication credentials are missing. See http://twitter4j.org/configuration.html for the detail.**
请帮助我摆脱这个问题。