ivangfr / springboot-react-keycloak

The goal of this project is to secure movies-app using Keycloak (with PKCE). movies-app consists of two applications: one is a Spring Boot Rest API called movies-api and another is a React application called movies-ui.
398 stars 156 forks source link

Verifying JWT tokens in Resource server #16

Open AdigaAkhil opened 1 year ago

AdigaAkhil commented 1 year ago

Hello @ivangfr , as far as I know there are 2 ways to verify the JWT token i) Forward the token to Auth server for verification ii) Verify the token in Resource server itself using public key

In this project you have used the first way, is it possible to use the second way? If yes could you please let me know.