Can I get the incoming request headers in an Angular authentication guard?
In an Angular 17 application, I’d like to support authenticated deep links with JWT tokens in the incoming request header. For this to work, I need to get the incoming request headers in the authentication guard, presumably from the Angular Router but I don’t see an obvious way to get these headers.
NOTE: this is about incoming requests to an Angular application, not outgoing requests from an Angular application.