From 912d3cf55293c7513a4262f3dc24ed4f6400cc0c Mon Sep 17 00:00:00 2001 From: Josh Roesslein Date: Sat, 31 Oct 2009 14:09:57 -0500 Subject: [PATCH] Remove auth requirement from API.followers() --- tweepy/api.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tweepy/api.py b/tweepy/api.py index 85b38c0..05633b2 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -316,8 +316,7 @@ class API(object): followers = bind_api( path = '/statuses/followers.json', parser = parse_users, - allowed_param = ['id', 'user_id', 'screen_name', 'page', 'cursor'], - require_auth = True + allowed_param = ['id', 'user_id', 'screen_name', 'page', 'cursor'] ) """ direct_messages -- 2.25.1