Twitter4j: Get list of replies for a certain tweet
问题 Is it possible to get a list of tweets that reply to a tweet (or to its replies) using twitter4j? The twitter website and Android app have this feature. 回答1: Here's a code I'm using in welshare The first part gets all the tweets that twitter is displaying below the tweet, when it is opened. The rest takes care of conversations, in case the tweet is a reply to some other tweet. RelatedResults results = t.getRelatedResults(tweetId); List<Status> conversations = results.getTweetsWithConversation