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
Description: The "getAuthenticateUser" method shoud return the value of "sub" claim rather than the "email" claim that might change over time.
So this:
@Override protected String getAuthenticateUser(AuthenticationContext context, Map<String, Object> jsonObject, OAuthClientResponse token) { if (jsonObject.get(OIDCAuthenticatorConstants.Claim.EMAIL) == null) { return (String) jsonObject.get("sub"); } else { return (String) jsonObject.get(OIDCAuthenticatorConstants.Claim.EMAIL); } }
should become this:
@Override protected String getAuthenticateUser(AuthenticationContext context, Map<String, Object> jsonObject, OAuthClientResponse token) { return (String) jsonObject.get("sub"); }
Suggested Labels: wso2,federated,google,oidc,outbound
Suggested Assignees:
Affected Product Version: WSO2 Identity Server 5.*
OS, DB, other environment details and versions:
Steps to reproduce:
Related Issues: Related to issue #16
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description:
The "getAuthenticateUser" method shoud return the value of "sub" claim rather than the
"email" claim that might change over time.
So this:
should become this:
Suggested Labels:
wso2,federated,google,oidc,outbound
Suggested Assignees:
Affected Product Version:
WSO2 Identity Server 5.*
OS, DB, other environment details and versions:
Steps to reproduce:
Related Issues:
Related to issue #16
The text was updated successfully, but these errors were encountered: