Hi guys,I have a cloud endpoint service deployed on google cloud. I can access the backend API with API keys. However, I have requirement to allow external service or user to call the backend API via JWT token. something like:
I set up a token from
jwt.io website and with this token, I got an error: {"code":401,"message":"Jwt verification fails"}
{
How can I solve this error?
How can I possibly build my own private jwt generation and validation so that I don't have to talk to backend or frontend developers to modify their codes? I am DevOps enginner.
The API is Python app deployed on GKE