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
I'm submitting a ... (check one with "x")
Current behavior: When using oauth2 password authentication the username and password information is sent in the body of the request:
{ "grant_type":"password", "email":"testuser", "password":"1234" }
Expected behavior: According to RFC 6749, this information should be sent using the "application/x-www-form-urlencoded" encoding algorithm.
Steps to reproduce: Configure NbOAuth2AuthStrategy and attemt to log in againts oauth service.
The text was updated successfully, but these errors were encountered:
Hey @alain-charles, if you have some time would be great if you could check this one!
Sorry, something went wrong.
Hi @nnixaa OK, i'll have a look at this in the next days. No problem.
Alain
fix(oauth2): grant_type now sends credentials in x-www-form-urlencode…
57fda28
…d form (#832) Closes #716
nnixaa
Successfully merging a pull request may close this issue.
Issue type
I'm submitting a ... (check one with "x")
Issue description
Current behavior:
When using oauth2 password authentication the username and password information is sent in the body of the request:
{ "grant_type":"password", "email":"testuser", "password":"1234" }
Expected behavior:
According to RFC 6749, this information should be sent using the "application/x-www-form-urlencoded" encoding algorithm.
Steps to reproduce:
Configure NbOAuth2AuthStrategy and attemt to log in againts oauth service.
The text was updated successfully, but these errors were encountered: