I'm trying to do a get request to a remote website but I get: "Uncaught SyntaxError: Unexpected token :" Does any one have a idea what im doing wrong? This is the code I have
var url = "http://www.colorfyit.com/api/swatches/list.json?url=facebook.com&callback=json_callback";
$http.jsonp(url)
.then(function successCallback(response) {
console.log(response);
}, function errorCallback(response) {
console.log(response);
});