Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the most efficient way to find which users favorited a specific tweet?

Tags:

twitter

Using the Twitter API, what would be the most efficient way to find which users favorited a specific tweet? And also it possible to do this in retrospective, or must the streams be tapped prior the fav? Thanks

like image 320
user971956 Avatar asked May 23 '12 20:05

user971956


People also ask

Can you search tweets someone liked?

click the user's name on the right side of the screen under People results. open the Favorites tab which will display all tweets the user has made a favourite. press CTRL + F and type in a keyword to search the favourites on that page (if a match is found, the favourite will be highlighted)

How do I find someone's Twitter feed for keywords?

Enter your search into the search bar on twitter.com. Click Advanced search, located underneath Search filters on the upper right of your results page, or click More options and then click Advanced search. Fill in the appropriate fields to refine your search results (see below for some helpful tips).

Why can't you see everyone who favorited a Tweet?

The Twitter users who liked your tweet have their accounts set as private. This means that all their activity on Twitter remains hidden from all that are not their followers. Only their followers can get to see. Which tweets must the world see?

Which is the most effective and used tool to manage Twitter?

SocialPilot: Best Twitter Automation Tool. SocialPilot is one of the top-performing Twitter management tools. It is the go-to tool of professionals for rigorous marketing and flawless tweeting. It supports Twitter and other social media platforms like Facebook, Instagram, LinkedIn, TikTok, and Pinterest.


1 Answers

from twitter api docs :

Favorite counts aren't available as part of tweet objects in the REST, Streaming or Search APIs at this time. User streams and Site streams both stream events when an authenticated user favorites tweets or has their tweets favorited. Using these authenticated streaming APIs, you can count favorites in real-time as they happen. This is currently the only scalable means to count favorite activity.

which means that you should use User Streams or Site Streams which support streaming these events in real-time as they happen. The events indicate the tweet that was favorited and the user who favorited it.

like image 150
Mouna Cheikhna Avatar answered Sep 23 '22 21:09

Mouna Cheikhna