Is there a way to verify JWT without a function?
I have netlify-identity-widget
setup for my site, and I can login to Netlify and my frontend has the access token.
However, without the secret key for the token, my backend cannot verify then token hasn’t been tampered with. Is there a way to do this? I do not wish to use functions as I have an existing backend.
I was assuming using a proxy would reject requests with an unverified token, but this is not the case. I have signed proxy redirects setup, but that allows me to verify that the requests are coming through the proxy, but does not verify the token.