I\'m trying to get the response headers from a post request, but the HttpResponse object doesn\'t contain the same headers that I can see in the network. What am I doing wrong?
Try to add responseType: 'text'
responseType: 'text'
this.http.post('http://localhost:8081/user/login', JSON.stringify(requestBody), {observe: 'response', responseType: 'text'}).subscribe(resp => { console.log(resp); });