From 87d01a039a9133d17f8f3aa4ce750ea58c9ade72 Mon Sep 17 00:00:00 2001 From: Ben Dowling Date: Wed, 29 Feb 2012 18:15:53 +0000 Subject: [PATCH] lookup users API call doesn't require authentication. See the documentation at https://dev.twitter.com/docs/api/1/get/users/lookup and try the example: https://api.twitter.com/1/users/lookup.json?screen_name=twitterapi&include_entities=true --- tweepy/api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tweepy/api.py b/tweepy/api.py index 28d9f06..7692ce4 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -175,7 +175,6 @@ class API(object): path = '/users/lookup.json', payload_type = 'user', payload_list = True, allowed_param = ['user_id', 'screen_name'], - require_auth = True ) """ Get the authenticated user """ -- 2.25.1