You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using GetSearch to identify users tweeting about specific hash tags. This is my code:
import twitter
from api_access import api_info
api = twitter.Api(consumer_key=api_info['consumer_key'],
consumer_secret=api_info['consumer_secret'],
access_token_key=api_info['access_token_key'],
access_token_secret=api_info['access_token_secret'])
search = api.GetSearch(raw_query='q=%23aging', count=100, result_type="mixed")
I've tried it with various counts and I still only get 15 results. I thought it might have been the sleep_on_rate_limit setting, but I tried with that set to False and get the same result.
The text was updated successfully, but these errors were encountered:
Also tried with result_type set to "recent" even though it's the default and "popular". Found I'm getting the same results regardless of result_type setting.
I'm using GetSearch to identify users tweeting about specific hash tags. This is my code:
I've tried it with various counts and I still only get 15 results. I thought it might have been the sleep_on_rate_limit setting, but I tried with that set to False and get the same result.
The text was updated successfully, but these errors were encountered: