python-keycloak
python-keycloak copied to clipboard
Hi guys, I am kicking the tires on some ways to implement authz via Keycloak and have been using this library. After some head scratching and code diving while trying...
Question: it is mandatory to specify the "proxies" using "KeycloakOpenID" in "python keycloak v2.6.0"? How to know the IP of the "reverse proxy" and how to specify the KeycloakOpenID connection?...
Full error message: ImportError: cannot import name 'Keycloak' from 'keycloak' (C:\Program Files\Python312\Lib\site-packages\keycloak\__init__.py) Python 3.12 keycloak-client 0.15.4 (currently) have tried keycloak 1.15 with same error VS Code for IDE (Have tried...
For python I was not able to retrieve data by passing the group name in the **get_group_by_path** function in keycloak admin, I needed to pass the name proceeds with /...
I know the way to get user ID from username is as follows: `user_id_keycloak = keycloak_admin.get_user_id("username-keycloak")` How to get user ID from custom attributes?
I know the way to update user's custom attributes is as follows: `response = keycloak_admin.update_user(user_id="user-id-keycloak", payload={ 'attributes':{'birthdate':'14-03-2000'}})` How to delete user's custom attributes?
Hello everyone, when I use python-keycloak, I validate the token with the public-key. For this I load the public-key with the public_key() method. This performs a netwerk request with every...
Hi, It appears that [`d3f4696`](https://github.com/marcospereirampj/python-keycloak/pull/506/commits/d3f4696eeaa782b10c67be9204fb5bd233d15001#diff-b4a20b26ca73014f6817549eb060b7eda594e199a8c7a700f338bff93ba1e6abL1786) (#506) removed `create_client_authz_scope_based_permission` introduced by #460. Was this an accident, or is there a valid reason? If accidental, could we reintroduce the call? Thanks in...
I'm using a service account for a server to get user info and create users with a single instance of `KeycloakAdmin` (the instance is created once when my server application...
Hi guys I got the error 'ImportError: cannot import name 'KeycloakOpenID' from 'keycloak'' Some times this error fixed by reinstalling the module pip uninstall python-keycloak / pip install python-keycloak. And...