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. Bozho 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(); ///////// Status originalStatus = t.showStatus(tweetId); if (conversations.isEmpty()) {