You can get user subscriber IDs using GET http://api.twitter.com/1.1/followers/ids.json?screen_name=<username>
. Each identifier corresponding to the user can now download tweets of each follower using the GET http://api.twitter.com/1.1/statuses/user_timeline.json?user_id=<follower ID>
. I admit that Twitter APIs (which are speed limited) require a lot of requsets, but you cannot improve this API.
source share