From: Aaron Hill Date: Tue, 7 Jan 2014 22:03:40 +0000 (-0500) Subject: Add additional parameters for followers/list X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=b5c0da445a78c4c891e600cce001e1fc38000753;p=tweepy.git Add additional parameters for followers/list --- diff --git a/tweepy/api.py b/tweepy/api.py index 260c01e..51a4bb6 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -316,7 +316,8 @@ class API(object): followers = bind_api( path = '/followers/list.json', payload_type = 'user', payload_list = True, - allowed_param = ['id', 'user_id', 'screen_name', 'cursor','count'] + allowed_param = ['id', 'user_id', 'screen_name', 'cursor', 'count', + 'skip_status', 'include_user_entities'] ) """ account/verify_credentials """