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
Standard flow:
identity, ok, err := passwordConnector.Login(r.Context(), scopes, username, password) if err != nil { s.logger.Errorf("Failed to login user: %v", err)
Password flow:
identity, ok, err := passwordConnector.Login(r.Context(), parseScopes(scopes), username, password) if err != nil { s.tokenErrHelper(w, errInvalidRequest, "Could not login user", http.StatusBadRequest)
The text was updated successfully, but these errors were encountered:
fix: log errors from login during password grant
4da93e7
Issues: dexidp#1813 Signed-off-by: Alastair Houghton <[email protected]>
22add4a
Successfully merging a pull request may close this issue.
Standard flow:
Password flow:
The text was updated successfully, but these errors were encountered: