未发现身份验证质询

时间:2014-05-06 03:14:58

标签: android twitter twitter-oauth twitter4j

我尝试使用

try {
  new TwitterFactory(new ConfigurationBuilder()
                .setOAuthConsumerKey(TWITTER_KEY)
                .setOAuthConsumerSecret(TWITTER_SECRET)
                .setOAuthAccessToken(TWITTER_TOKEN)
                .setOAuthAccessTokenSecret(TWITTER_TOKEN_SECRET)
                .build()).getInstance().updateStatus("HELLO WORLD!");
} catch (TwitterException e) {
  e.printStackTrace();
}                   

但是一旦我运行它,它就会给我这个错误:enter image description here

这可能是一个可能的答案:来自hereIn order to get access acquire AccessToken using xAuth, you must apply by sending an email to api@twitter.com — all other applications will receive an HTTP 401 error.,但他的回答并不完整(没有跟进的步骤)

如何解决这个问题?谢谢!

0 个答案:

没有答案