Sharing of JWT Tokens

1.6k Views Asked by At

I've got an instance of IdentityServer4, an Angular SPA, a webserver, and an api service on another network. What are the security implications of having a JWT that is stored on the client side, and used to authenticate to the webserver calls and passed down to the api service for auth as well. The SPA never calls the api service directly, everything is proxied through the webserver. Is there an other preferred mechanism for this?

1

There are 1 best solutions below

0
On

This is a really good answer to this perennial question about access tokens stored somewhere in the client-side JS application: https://stackoverflow.com/a/41189419/1395123