So I am able to make the first JSONP request to the yelp API work to return business data for me, but any subsequent requests I make lead to the callback for failure that logs a
You should do it like this :
$http.jsonp("api.yelp.com/v2/search?callback=JSON_CALLBACK", yourParams) .success(function() { //success callback }) .error(function(){ //error callback }) ;