I need to better understand the difference between $http and $resource and when to use each
$resource is built on top of $http.
$http is normal ajax, it can be used for any form of web service.
$resource is specifically for RESTful service.
More details on this
AngularJS $http and $resource