You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The username some\user is how the user is actually stored in keycloak and what we are looking for the query ?username=some%5Cuser (%5C is the code for \) . Translating this into a curl this should be the result:
With that fix you will always end up with some%5C%5Cuser because the backslash is literally escaped. This breaks the user references entirely for any users having backslashes in their usernames.
Given a keycloak_user with a backslash in its name:
cannot construct a group membership that includes the above user:
Getting:
Error: user with username id\abc does not exist
It looks like the username returned does not have the escaping backslash as in the definition of keycloak_user resulting in the error
The text was updated successfully, but these errors were encountered: