lookup_user #255
Labels
No labels
Bug
Enhancement
Feature Suggestion
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: code/twython#255
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi!
If I'm not mistaken you used a GET method to implement the "lookup_user" api.
On the twitter/doc page they say:
"You are strongly encouraged to use a POST for larger requests"
Will it be OK to simply change the endpoints.py file like so (post instead of get)? :
def lookup_user(self, **params):
return self.post('users/lookup', params=params)
Thanks, Andrei.
You could issue a Pull Request for that change!