Unable to see your code, I can show you what worked for me a few days ago when working with JSONP and angular:
controller('YourCtrl', ['$scope', '$http', function($scope, $http) { var url = "https://angularjs.org/greet.php?callback=JSON_CALLBACK&name=Brian" $http.jsonp(url) .success(function(data) { $scope.greeting = data; }); }])
Then in the view something like this should work:
<div ng-controller="YourCtrl"> {{greeting.name}} <br /> {{greeting.salutation}} </div>
If this does not answer your question, try pasting into your code.
Nader dabit
source share