Dynamic Callback URL works again

Using POST to set dynamic callback_url decided to break within 3 hours
of testing it.. haha.
This commit is contained in:
Michael Helmick 2012-03-21 15:19:27 -04:00
parent 8e26e568a6
commit 5eb7f29bff

View file

@ -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)