Verifying JWT provided by Kinde with PKCE extension
We are implementing kinde-auth-pkce-js in the front-end of our react application. We are able to login() with Kinde from client side and get hold of the JWT provided by Kinde by using
How do we verify the Kinde JWT, on the server, when the JWT is originally obtained client side via pkce?
The docs say we need
await kindeClient.getToken(). How do we verify the Kinde JWT, on the server, when the JWT is originally obtained client side via pkce?
The docs say we need
code_verifier, code_challenge and code_challenge_method and we don't know where to obtain these values, server side