From 5eb7f29bffe8cd5a6c52d24e2ce7b6f3061f7609 Mon Sep 17 00:00:00 2001 From: Michael Helmick Date: Wed, 21 Mar 2012 15:19:27 -0400 Subject: [PATCH] Dynamic Callback URL works again Using POST to set dynamic callback_url decided to break within 3 hours of testing it.. haha. --- twython/twython.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/twython/twython.py b/twython/twython.py index 2e469ae..3ef8278 100644 --- a/twython/twython.py +++ b/twython/twython.py @@ -242,9 +242,6 @@ class Twython(object): request_args['oauth_callback'] = callback_url method = 'get' - if not OAUTH_LIB_SUPPORTS_CALLBACK: - method = 'post' - func = getattr(self.client, method) response = func(self.request_token_url, data=request_args)