Hi folks,
I’m new to Keyclaok and also OIDC protocols.
I’ve successfully built a Spring Boot application with Keycloak, and I created one realm and one client there. I could also get JWT of the client with client-secret.
However, this practice is client-base and what I want to do is getting JWT by each user.
Suppose I have…
RealmA
- ClientA: UserA, UserB…
- ClientB: UserC, UserD…
Is there way that I can get JWT of UserA to UserD with OIDC way?
I’ve found it can be implemented using id-password base though, should I need to use login way if I want to make it user-base or is there any other way to fulfil it using OIDC?
Thanks