Replies to a particular tweet, Twitter API

后端 未结 11 2044
北荒
北荒 2020-11-28 02:19

Is there a way in the Twitter API to get the replies to a particular tweet? Thanks

11条回答
  •  独厮守ぢ
    2020-11-28 02:53

    I've implemented this in the following way:

    1) statuses/update returns id of the last status (if include_entities is true) 2) Then you can request statuses/mentions and filter the result by in_reply_to_status_id. The latter should be equal to the particular id from step 1

提交回复
热议问题