can anyone give me any reasons on why I\'m not getting any headers when getting a response back from http.post?
this.http.post(url, body).sub
To observe a response instead of a typecasted body, which the newer HttpClient does by default:
this.http.post(url, data, {observe: 'response'}).subscribe((res:Response) => {});
Ie. what you were doing was just type casting the data your server sent as .