1
votes

I am writing a small program that polling tweets from twitter with twitter4j search API,but it seems that this API only returns tweets that were posted within last week,is there any way to get all the tweets under specific keywords from twitter ?

1

1 Answers

0
votes

You can get tweets from only past 7 days using Twitter search in REST API.

If your application needs more than this, start using Streaming API. You can start saving the tweets you get in a database for later access.

Example: http://davidcrowley.me/?p=435