I want to make a Get request to my Backend, but I want to verify some user credentials before sending the response object.
Here is my code:
$scope.ge
For $http.get requests use the params property of the config object
$http.get
params
$http.get(url, {params:{ foo:'bar'}}).then(func....
See the Arguments table in Usage section of $http docs