We have used strapi for authentication. When user signin using email and password strapi provides a jwt token. This token is used for requesting other private endpoints in our application.
My question is how to validate this jwt token? Is there any endpoint by default to validate whether this jwt is valid or not? Some people are calling /users/me to check the jwt token validity.
have you got solution?
I use users/me endpoint…seems like a perfect use case for it.