My springboot application sets a header parameter value I would like to intercept that value and send it to every request in angular
Serverside: response.getHeaders().add("HeaderName", "HeaderValue")
Front-end: I have two interceptors where the response value is intercepted in response.interceptor.ts class where I have set the same value as the request header.
Any idea how to achieve this?