I want to recover the 50 most popular tweets from a 5 day period, im using tweepy on python, and this is the search query i’m using:
public_tweets = api.search(q=‘Microsoft’, lang=‘en’, result_type=‘popular’, count=‘50’, since=‘2018-8-20’, until=‘2018-8-25’)
If i change result_type to ‘mixed’ or ‘recent’, it does return the 50 tweets, but if i change it to ‘popular’, it just returns 15 tweets, does anyone knows what may be wrong?