Andreas Abraham
Andreas Abraham
Looks like (0,0) coordinate should be filtered out. Could you attach the original file that was imported?
Keycloak tries to send the verification email. Did you configure a smtp server on keycloak side? (Followup question if you did: does it work if you do it manually in...
Doesn't the Usage example cover this? `token = keycloak_openid.token("user", "password")` and then you should have it in `token['access_token']`
The client has a built-in user "service-account-my-client" which is used for the assigned roles. But when logging in, no user session is started (see keycloak documentation). You might get the...
Currently chunks of 100 items are retrieved in multiple functions (`get_client_role_members, get_group_members, get_groups, get_realm_role_members, get_users`). Could you explain why this is a problem? Adding a setter/getter to set the page...
Nicely done. What's the benefit over `length(get_user_groups(user_id)` (except for reduction of data volume)?
I guess you need to set the client to confidential. Which endpoint did you use for the post request?
Roles can be from the realm or a specific client, thus the two different functions. If you assigned a realm role you need to remove it using `delete_realm_roles()`
As far as I understand the documentation the functions `assign_realm_roles()` and `delete_realm_roles()` are meant to attach/detach a realm role from a user. You might confuse that with `create_realm_role()` and `delete_realm_role()`.
My minimal payload is `payload = {"alias":"xxx", "providerId":"basic-flow", "topLevel":True, "builtIn":False}` Might work without `topLevel` or `bultIn` but probably causes keycloak issues ... (providerID = basic-flow / client-flow)