I am parsing some JSON. My JSON is valid, because when I run it through JSONLint, I get the green label saying Valid JSON, yet for some reason I still cannot parse the JSON via my Angular Controller.
JSON code can be found here.
Controller Code:
savvyApp.controller('ProductsCtrl', function($scope) {
var apiJSONResult = '<linked json here>';
$scope.apiResult = JSON.parse(apiJSONResult);
});