Retweets
See original GitHub issueI think it would be useful to have a command like this:
twarc2 retweets {tweet-url}
Which would fetch the retweets by looking up the conversation-id and then issuing the appropriate search. An optional --archive
parameter could indicate whether to use the Academic Search endpoint.
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (6 by maintainers)
Top Results From Across the Web
Twitter Retweet FAQS – deleting, RTs, and more
A Retweet is a re-posting of a Tweet. Twitter's Retweet feature helps you and others quickly share that Tweet with all of your...
Read more >What is a retweet? - BigCommerce
Definition: A retweet is when someone republishes or forwards a post to their own Twitter followers. Retweets are typically credited to their original ......
Read more >Retweets: What They Are and How to Use Them on Twitter
Before you learn how to retweet, you should first know the definition of the term. A retweet is a post that has been...
Read more >retweets - Wiktionary
retweets. Third-person singular simple present indicative form of retweet. AnagramsEdit · tweeters. SpanishEdit. NounEdit. retweets. plural of retweet.
Read more >Everything you need to know about retweets
We're here to answer some of the common questions about retweeting on Twitter. Believe us, there's more to a retweet than you could...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Waiting to hear back from twitter on this proposal: https://github.com/twitterdev/open-evolution/pull/4
Commenting here because I’m curious how you end up doing this… 😄
I’m working on a project right now where we are trying to reconstruct retweet cascades and - to get all retweets in a cascade between time X and time Y - we utilize the
retweets_of:{user_id}
search parameter (as @igorbrigadir suggested above) with start and end times being X and Y.user_id
represents the user originating the cascade.This approach returns a lot of extra retweets and then, after all the retweets are downloaded, we match the returned retweets to the original tweet’s id number by using the
referenced_tweets
tweet field.All of the cascades we are interested in contain links so we also include
has:links
in the query and you can keep adding in these types of filters to reduce the number of extra tweets that are returned in the query. I was hesitant to include the actual tweet text (because it seems like there might be some potential for weird behavior depending on each tweet’s text) but I suppose that should work too!