Viewing entries tagged
jwt

Add JWT Token to Angular HTTP Requests Using NGRX

1 Comment

Add JWT Token to Angular HTTP Requests Using NGRX

It’s become pretty commonplace to authenticate and authorize web clients using JWTs (JSON Web Tokens) via HTTP request headers; it’s also become fairly popular to leverage some form of state management in web clients with a flavor of Redux. In this post I’ve created a simple web client with Angular CLI and NGRX that demonstrates how to retrieve a saved JWT from a NGRX store and apply it to all API requests using an HTTP interceptor.

1 Comment