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
google-oauth-java-client's LocalServerReceiver corrupts authorization code if the code contains encoded = sign (%3D).
=
%3D
PKCESample.java
Issue is on google-oauth-java-client's LocalServerReceiver line 282.
getRawQuery() should be used instead. Then decoded after queryToMap call.
getRawQuery()
queryToMap
The text was updated successfully, but these errors were encountered:
No branches or pull requests
google-oauth-java-client's LocalServerReceiver corrupts authorization code if the code contains encoded
=
sign (%3D
).Environment details
Steps to reproduce
PKCESample.java
against any OAuth server%3D
is decoded to=
.=
at the end of the code is removed, thus corrupting the authorization code.Any additional information below
Issue is on google-oauth-java-client's LocalServerReceiver line 282.
getRawQuery()
should be used instead. Then decoded afterqueryToMap
call.The text was updated successfully, but these errors were encountered: