From 7cdf8cb5021757352d5be7f1a5490544af76b669 Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Tue, 6 May 2014 06:21:19 -0400 Subject: [PATCH] Add missing 'count' parameter to followers_ids --- tweepy/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweepy/api.py b/tweepy/api.py index 3df6ebc..04417b4 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -337,7 +337,7 @@ class API(object): followers_ids = bind_api( path = '/followers/ids.json', payload_type = 'ids', - allowed_param = ['id', 'user_id', 'screen_name', 'cursor'] + allowed_param = ['id', 'user_id', 'screen_name', 'cursor', 'count'] ) """ followers/list """ -- 2.25.1