From 5f1d0d4e907550a312faeb4322962366c68c91a4 Mon Sep 17 00:00:00 2001 From: Eugen Pyvovarov Date: Wed, 10 Nov 2010 08:27:21 -0800 Subject: [PATCH] verify credentials and return userinfo --- twython/twitter_endpoints.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/twython/twitter_endpoints.py b/twython/twitter_endpoints.py index 42bd5a1..4581c92 100644 --- a/twython/twitter_endpoints.py +++ b/twython/twitter_endpoints.py @@ -21,6 +21,11 @@ api_table = { 'method': 'GET', }, + 'verifyCredentials': { + 'url': '/account/verify_credentials.json', + 'method': 'GET', + }, + # Timeline methods 'getPublicTimeline': { 'url': '/statuses/public_timeline.json',