I am trying to collect tweets using tweepy. The resources I have checked all use the parameters since and until which has not worked so far. I also tried twint and GetOldTweets3 to no success.
The search I tried on tweepy:
tweets = tw.Cursor(api.search_tweets,q=search_query,lang="en", since="2020-03-01", until="2020-03-01").items(1000)
Is there a way to collect tweets between the specified time period or will I need to use another API? And if I need to use another API could you please elaborate on how it should be used?
From the Tweepy documentation of the
search_tweetsmethod (here):If you need to retrieve tweets from 2020, you would have either to pay for the premium access in the V1.1 API or to apply for an academic access in the V2.
There is no other way to do that with the official Twitter API.