Configuring React Application with Keycloak
Marian Salvan
In the previous section, we secured a .NET API and validated access using Keycloak.
Now we will integrate a React client so users can authenticate with the same Keycloack instance and call protected API endpoints from the browser.
Note: This article assumes that you have a basic knowledge in React components, contexts and hooks
This section contains the following:
- Add React service to Docker Compose
- Configure the Keycloak client for React
- Configure the audience mapper
- Install...
