
How to configure Keycloak 18 running http only in production mode?
May 30, 2022 · I have the situation that I run Keycloak 18.0.0 behind a reverse proxy that is terminating the secure (https) connection. Therefore I would like to build a Docker image that configures …
Should I use keycloak or not? - Stack Overflow
Apr 2, 2018 · In addition, Keycloak is too much about the GUI - which makes it difficult for me, especially during development. Because I also want to provide my team with a local instance of keycloak during …
Keycloak lost admin password - Stack Overflow
Aug 31, 2021 · I have a local test installation of keycloak 12 and unfortunately I've lost the admin password, any idea on how to reset it or reset the keycloak configuration without losing the realms ? I …
What are Keycloak's OAuth2 / OpenID Connect endpoints?
Feb 22, 2015 · We are not interested in using Keycloak's own client library, we want to use standard OAuth2 / OpenID Connect client libraries, as the client applications using the keycloak server will be …
Keycloak Docker HTTPS required - Stack Overflow
Apr 16, 2018 · Old answer for Keycloak up to 16.1.1 and Keycloak legacy 17+: Publish port 8443 (HTTPS) and use it instead of 8080 (HTTP): docker run \ --name keycloak \ -e …
Keycloak Authentication invalid_client_credentials - Stack Overflow
Mar 9, 2023 · It could be only due to the fact that you give a wrong client secret to your react app. Double-check your client secret in the credentials tab (inside keycloak) with the one you give to your …
keycloak Invalid parameter: redirect_uri - Stack Overflow
Jul 27, 2017 · According to the version 18 release note. Keycloak does not support logout with redirect_uri anymore. you need to include post_logout_redirect_uri and id_token_hint as parameters. …
Getting Keycloak's public key - Stack Overflow
Jan 23, 2019 · I inspected the certificate from keycloak's UI where you can manually get the public key, and it was a 10 year expiration. But that's not a given that it isn't scheduled to change before that. I'm …
python - Integrate Keycloak with FastAPI - Stack Overflow
Aug 17, 2023 · Keycloak supports OAuth2 via OIDC, so you can use any OIDC library like pyoidc or with a Keycloak specific integration like fastapi-keycloak-middleware. Implementing OAuth2 without OIDC …
How to obtain an access token within a Keycloak SPI?
Sep 4, 2020 · Keycloak doesnt log anything just silently returns null. On the top of that I can use the above code from anywhere else and it works! I can use it from a plain java main () method and still …