I\'ve testing AngularJS services in browser console during development for quick verification. The way I inject a service into console is as describe in this question or
$http = angular.element(document.body).injector().get('$http');
then
$http.get(...) // or post or whatever