我在推特上工作,我有訪問令牌,現在我也收到推文,現在我想回復那些推文,就像我們在Twitter網站上做的那樣,我使用下面的代碼,但它不回覆推文,但它更新我的狀態,請幫我解決這個問題,謝謝..如何使用Twitter4j api回覆鳴叫?
public void tweetReply() {
try {
// System.out.println("Post Id= " + itemsObj.postId);
AccessToken a = new AccessToken(twittertokens[0], twittertokens[1]);
Twitter twitter = new TwitterFactory().getInstance();
twitter = new TwitterFactory().getInstance();
twitter.setOAuthConsumer(Constants.CONSUMER_KEY, Constants.CONSUMER_SECRET);
twitter.setOAuthAccessToken(a);
Long id = new Long("236178766597087234");
twitter.updateStatus(new StatusUpdate("@lalitrajput024 this is to test For reply option ").inReplyToStatusId(id));
} catch (Exception e) {
// TODO: handle exception
}
}
我有解決的堆棧溢出這個問題..請點擊此鏈接http://stackoverflow.com/questions/13134629/in-android-how-directly-post-tweet-to-following-users驗證用戶在此鏈接答案結帳! 我希望這個鏈接可以幫助你! – 2012-11-05 10:53:09