I\'m requesting an endpoint that creates a new resource and returns a 201 response containing a \"Location\" header with the newly created resource:
However
I had that problem too. In my case I saw only Content-Type, Pragma and Expiration headers.
In fact, that is not a Angular issue. The reason that there are not headers that you expect is a CORS.
Adding 'access-control-expose-headers' : 'Location' on the API solves your problem :)
'access-control-expose-headers' : 'Location'