XacronDevelopment / oauth-aspnet

An ASP.NET Core compatible port of the OAuth Authorization Server Middleware from Microsoft's Project Katana (Microsoft.Owin.Security.OAuth)
Apache License 2.0
25 stars 16 forks source link

Password is not set when going through the password grant flow #19

Closed dev-corbett closed 7 years ago

dev-corbett commented 7 years ago

When handling an auth request that has a grant type of password, the password is attempted to be extracted from the input parameters from the request body using the Constants.Parameters.Scope constant instead of Constants.Parameters.Password.

Xacron commented 7 years ago

When handling an auth request that has a grant type of password, the password is attempted to be extracted from the input parameters from the request body using the Constants.Parameters.Scope constant instead of Constants.Parameters.Password.

Thanks for the pull request, not sure how I missed seeing it. I will review your changes.