So I’m very new in this using twitter API thing. So my condition is like this. I have a huge number of tweet ids (approximately about hundred thousands)
And I’m creating an android application that retrieve those ids and display the actual tweets on the screen. I’m not going to display a lot, maybe only 100 per query.
Right now I’m using twitter4j library and REST API to get those actual tweets. And I’m keep getting rate limit exceed error. So I begin to find any other alternatives to resolve this.
So if I use Streaming API, there’s no rate limit is it? And if I use streaming API, can I get the actual tweet if the id is given to me? If yes, can I use twitter4j library to do that?
Thanks