fourcodes-org / proof-of-concepts

2 stars 1 forks source link

Keycloak - How to create the clients on keycloack #143

Open four-codes opened 6 months ago

four-codes commented 6 months ago

https://www.keycloak.org

fourtimes commented 5 months ago

Creating a new Keycloak client

To create a new Keycloak client, navigate to the Clients menu and click on the Create client button.

Fill out the form as follows:

  1. Client ID - react-client
  2. Client Type - OpenID Connect
  3. Client Authentication - Enabled
  4. Authorization - Enabled
  5. OAuth 2.0 Device Authorization Grant - Enabled
  6. Root URL - http://localhost:3000/ (the address of your local API app)
  7. Valid Redirect URIs - http://localhost:3000/
  8. Web Origins - http://localhost:3000/
  9. Go to the advanced setting
  10. Proof Key for Code Exchange Code Challenge - s256
  11. Save it.

Image

Image

Image

Image

OUTPUT Image