Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save HITchenqian/5201f676ff74738280ba289a4b5d8e94 to your computer and use it in GitHub Desktop.
Save HITchenqian/5201f676ff74738280ba289a4b5d8e94 to your computer and use it in GitHub Desktop.
KeyCloak and Spring Security Get Custom Claims Info
public String method(KeycloakAuthenticationToken token) {
OidcKeycloakAccount account = token.getAccount();
IDToken idToken = account.getKeycloakSecurityContext().getIdToken();
return idToken.getOtherClaims().get("CUSTOM_FIELD")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment