diff --git a/twython/twython.py b/twython/twython.py index 93c5c42..2540044 100644 --- a/twython/twython.py +++ b/twython/twython.py @@ -298,7 +298,7 @@ class Twython(object): def get_authorized_tokens(self): """Returns authorized tokens after they go through the auth_url phase. """ - response = self.client.get(self.access_token_url) + response = self.client.get(self.access_token_url,params={'oauth_verifier':self.oauth_token_secret}) authorized_tokens = dict(parse_qsl(response.content)) if not authorized_tokens: raise TwythonError('Unable to decode authorized tokens.')