Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any way to search for a term within a user's followers' tweets only. Search API is global, apparently. I want to search only within the user's followers.

Is there a way of doing this. Even a hugely complex one will be appreciated.

share|improve this question

1 Answer

You can retrieve the IDs of the user's followers with GET http://api.twitter.com/1/followers/ids.json?screen_name=<username>. Each ID corresponding to a user, you can now download the tweets of each follower with GET http://api.twitter.com/1/statuses/user_timeline.json?user_id=<follower ID>. I recognize that it requires lots of requsets to the Twitter API (which are rate limited) but you cannot do better with this API.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.