From b5c0da445a78c4c891e600cce001e1fc38000753 Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Tue, 7 Jan 2014 17:03:40 -0500 Subject: [PATCH] Add additional parameters for followers/list --- tweepy/api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 """ -- 2.25.1