Authorization Server (Keycloak)
The server issuing access tokens to the client after successfully authenticating the resource owner and obtaining authorization.
Last updated
Was this helpful?
The server issuing access tokens to the client after successfully authenticating the resource owner and obtaining authorization.
Last updated
Was this helpful?
Keycloak is an open-source Identity and Access Management solution administered by RedHat, and developed in Java by JBoss. More documentation about Keycloak can be found . A code sample of an embedded server (Spring Boot) can be found .
Note: the server could be running on a VM or something in a standalone mode and configured using the Admin Console. This process is described . I chose de deploy it in a Spring Boot embedded application to make the deployment process easier.
Some core concepts need to be understood to configure the server properly. They are explained .
The embedded server is created using a realm import file. The file is in the project repository and can be found in resources/journal-de-bord-realm.json file.
I would like to enable login with Google. are the steps to follow.
It is possible to add a Google button, resources are provided by Google .
https://developers.google.com/identity/sign-in/web/build-button
It is possible to customize the look and feel of the Keycloak GUI. Here are two key tutorials:
(explains how theme are added in an embedded server)
(customize the login page)
https://developers.google.com/identity/sign-in/web/build-button
The server configuration is the following…
Pour modifier la page il suffit de copier le style de base (que l’on trouve ), la documentation officielle sur les themes est .