I am trying to grab some API data from a website (in particular Yummly) and it looks like when I try to do a JSONP request I receive JSON data. This results in an "Uncaught SyntaxError: UnexpectedToken:".
The code which tries to do this is:
var keywords = $('#input-text').val();
var url = "http://www.yummly.com/api/recipesq="+keywords+"&_app_id=<snipped-app-id>&_app_key=<snipped-api-key>&";
$.ajax({
type: 'GET',
url: url,
dataType: 'jsonp',
//dataType: 'jsonp json'
success: function() { console.log('Success!'); },
error: function(data, data2) { console.log(data); },
//jsonp: false,
//jsonpCallback: 'recipeGet'
});
});
I have tried to convert to JSON from the JSONP by overloading dataType, however this did not result in any different result than the above. I have also tried changing the callback function, but when I receive the syntax error it does not go to the function. When I do not use JSONP and just use JSON I receive a, "XMLHttpRequest cannot load Origin is not allowed by Access-Control-Allow-Origin.".
Any help would be appreciated, i've been struggling with this for quite a bit.
JSONP? If they don't, then you can't useJSONP. if they also do not supportCORSheaders, then you simply cannot use this data source via AJAX on other domains. What exactly does the response look like? – Alex Wayne Nov 20 '12 at 0:08