Can I use twitter api to search tweets one week before?
问题 I am trying to search keywords in twitter through tweepy. However, I found it seems like that I can not search the tweets one week before, the code below is the main search code. for searched_tweets in tweepy.Cursor( API.search, q = "python", since = 2014-02-03, until = 2014-02-04, lang='en' ).items() I am not sure whether there is any limited or any better way to search by time, thanks for your help!! :) 回答1: Unfortunately, you can't get tweets older than a week with the twitter search API.