How do I get the HTTP response status code in AngularJS 1.2
Using ngResource in AngularJS 1.2rc(x), how do I get the status code now? RestAPI.save({resource}, {data}, function( response, responseHeaders ) { }); where RestAPI is my ngResource . The response has the $promise object and the resource returned from the server but not a status anymore. The responseHeaders() function only has a status if the server injects the status code into the header object, but not the true returned status code. So some servers may serve it and some might not. You can use the promiss callbacks then , catch and finally after the $resource call. For example. If you want to