Twitter4j: Get list of replies for a certain tweet

前端 未结 5 1472
天命终不由人
天命终不由人 2020-12-15 01:59

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.

5条回答
  •  鱼传尺愫
    2020-12-15 02:40

    You can use InReplyToStatusId field value using Status.getInReplyToStatusId()

    Use the code code below recursively to get all replies or conversations of a tweet using API v1.1:

    Status replyStatus = twitter.showStatus(status.getInReplyToStatusId());
    System.out.println(replyStatus.getText())
    

    Using this I could pull Tweets with all of their replies.

提交回复
热议问题