I need to send a request body with my DELETE requests using $resource
The only way I could see to do this was to change:
https://github.com/angular/angular.j
You can inject the $http (http://docs.angularjs.org/api/ng.%24http#Usage) component into one of one of your controllers and by using it as follows :
$http
$http({method: 'DELETE', url: 'www.url.com', headers: {'X-MY-HEADER': 'MY_VALUE'}});
I hope this what you expected.