Allow oauth1 field oauth_verifier in querystring

This commit is contained in:
Magnus Hagander
2021-03-03 12:48:56 +01:00
parent 85f981639d
commit c10c4f7b2a

View File

@ -284,7 +284,7 @@ def oauth_login_twitter(request):
_twitter_auth_data)
@queryparams('code', 'state', 'next')
@queryparams('code', 'state', 'next', 'oauth_verifier')
def login_oauth(request, provider):
fn = 'oauth_login_{0}'.format(provider)
m = sys.modules[__name__]