Add missing 'count' parameter to followers_ids
authorAaron Hill <aa1ronham@gmail.com>
Tue, 6 May 2014 10:21:19 +0000 (06:21 -0400)
committerAaron Hill <aa1ronham@gmail.com>
Tue, 6 May 2014 10:22:00 +0000 (06:22 -0400)
tweepy/api.py

index 3df6ebc671325bae39d79fb84388ceb9538d6302..04417b45c4a014b76dbd361f62e934c030f3803d 100644 (file)
@@ -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 """