From dff85ace497f6fcd633fe07bce2f465a086e43d1 Mon Sep 17 00:00:00 2001 From: Davis Silverman Date: Mon, 13 Jul 2015 15:20:21 -0400 Subject: [PATCH] Have lookup_user GET and not POST --- twython/endpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twython/endpoints.py b/twython/endpoints.py index 60663ca..356cd8a 100644 --- a/twython/endpoints.py +++ b/twython/endpoints.py @@ -458,7 +458,7 @@ class EndpointsMixin(object): Docs: https://dev.twitter.com/docs/api/1.1/get/users/lookup """ - return self.post('users/lookup', params=params) + return self.get('users/lookup', params=params) def show_user(self, **params): """Returns a variety of information about the user specified by the -- 2.39.5