Obtain RT flow using Twitter REST API

Asked 2 years ago, Updated 2 years ago, 72 views

Assumption:
·User A
·User B
to the followers of User A ·User C

to followers of User B

Is there a way to get this flow using the Twitter REST API when user A tweets, user B retweets the tweet, and user C RTs the tweet?

In other words, I would like to obtain the following spillover conditions.
Tweets - > User B RT - > User C RT

twitter

2022-09-30 19:39

1 Answers

It may not be realistic, but it may be possible.
RT is managed by another tweet ID that starts with the string "RT@id".

If you repeat this, you will be able to get rid of it.
However, statuses/retweets/:id can only be used 15 times/15 minutes, and only 100 tweets can be obtained at a time, so you can only get 15 RTs and 100 RTs at a time.The only way to get more is to allow every 15 minutes.


2022-09-30 19:39

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.