Json Parseerror - Get Json As String
I'm trying to get json data from a service, but getting parseError when I use $.ajax with datatype 'JSONP': $.ajax({ url: url, dataType: 'JSONP' }) .error(function(XMLHttpR
Solution 1:
That's JSON, not JSONP.
For example, this is JSON:
{"key":"value"}
This is JSONP:
callback({"key": "value"})
If the service doesn't provide JSONP, the browser prevents you from getting it (same origin security restrictions).
The way people get around same origin restrictions consist of some server utilization. You can either right code that does this in PHP, or use a service such as AnyOrigin .
Here's an AnyOrigin example.
$.getJSON('http://anyorigin.com/get?url=metservice.com/publicData/tides2MonthAuckland&callback=?', function (data) {
$('#result1').html(JSON.stringify(data.contents));
}).fail(function (XMLHttpRequest, textStatus, errorThrown) {
$("#result2").html(textStatus);
});
... and an accompanying fiddle.
Here's an example that shows how this data can be used.
Post a Comment for "Json Parseerror - Get Json As String"