views:

467

answers:

1

Hi,

I have a big list of Twitter users stored in a database, almost 1000.

I would like to use the Streaming API in order to stream tweets from these users, but I cannot find an appropriate way to do this.

Help would be very much appreciated.

+3  A: 

According to the Twitter API documentation, you can only use the streaming API to follow up to 400 users. For more than that, you'll have to request an increased access level for the account you use to access the API.

balpha
Thank you balpha, that was a very helpful answer!Do you know if using the streaming API would affect the basic 20k req/hour?
RadiantHex
@RadiantHex: I wouldn't think so; as far as I get it, the standard rate limits ( http://apiwiki.twitter.com/Rate-limiting ) and the streaming API limits are totally separate things. Even if that wasn't the case, it's still just one request, even if you stream for 24 hours, right? :)
balpha
Thank you very much for your help balpha! :)
RadiantHex