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
According to http://oauth.net/core/1.0a/#rfc.section.9.1.2, URLs must be normalised before using for signatures.
To fix it, it seems enough to change http://github.com/simplegeo/python-oauth2/blob/master/oauth2/__init__.py#LID292 to read:
self.normalized_url = urlparse.urlunparse((scheme.lower(), netloc.lower(), path, None, None, None))
Otherwise it will break when using URLs like HTTP://Example.com/foo/bar
The text was updated successfully, but these errors were encountered:
@joestump might see if we can get #133 to include changes to close this?
Sorry, something went wrong.
@jaitaiwan this is a separate issue from #133, but related.
Lowercase scheme and authority per specification. Closes #29.
6b92bab
Sorry yes that's what I meant.
joestump
No branches or pull requests
According to http://oauth.net/core/1.0a/#rfc.section.9.1.2, URLs must be normalised before using for signatures.
To fix it, it seems enough to change http://github.com/simplegeo/python-oauth2/blob/master/oauth2/__init__.py#LID292 to read:
self.normalized_url = urlparse.urlunparse((scheme.lower(), netloc.lower(), path, None, None, None))
Otherwise it will break when using URLs like HTTP://Example.com/foo/bar
The text was updated successfully, but these errors were encountered: