We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the fix is to unquote the get arguments you get from the request:
def complete(self): args = dict(self.request.GET.items()) args_unquoted = {} for key, value in args.iteritems(): args_unquoted[key] = urllib2.unquote(value) self.result = self.consumer.complete( args_unquoted, 'http%s://%s%s' % (_https(), Site.objects.get_current(), self.request.path) )
The text was updated successfully, but these errors were encountered:
Not sure what's going on. I just tested it out with OpenID + Google without having to tamper with any quoting.
Sorry, something went wrong.
Will have to investigate when I get some time so I can get you a good test case
Is this still an issue?
No branches or pull requests
the fix is to unquote the get arguments you get from the request:
def complete(self):
args = dict(self.request.GET.items())
args_unquoted = {}
for key, value in args.iteritems():
args_unquoted[key] = urllib2.unquote(value)
self.result = self.consumer.complete(
args_unquoted,
'http%s://%s%s' % (_https(), Site.objects.get_current(),
self.request.path)
)
The text was updated successfully, but these errors were encountered: