in reply to Re^2: Perl json parser and JSONP issue
in thread Perl json parser and JSONP issue
"You can clearly see that I am passing a JSON file to a callback function"
Yes - that's entirely the problem. Your function expects to be get JSONP, and it's being given JSON. As I said: JSON and JSONP are different file formats.
You script is trying to get some JSONP from http://localhost/dat.json?callback=dbg but it's being given JSON. JSON and JSONP are different file formats.
Here's an example JSON file:
{ "name": "Joe Bloggs" }
Here's an example JSONP file:
process({ "name": "Joe Bloggs" });
As you can see, they look a little bit different. That's because JSON and JSONP are different file formats.
Also, make sure you're sending the correct HTTP headers.
Note the difference: that's because JSON and JSONP are different file formats.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: Perl json parser and JSONP issue
by heatblazer (Scribe) on Jun 15, 2012 at 15:12 UTC | |
by tobyink (Canon) on Jun 15, 2012 at 15:35 UTC | |
by heatblazer (Scribe) on Jun 15, 2012 at 15:47 UTC | |
by tobyink (Canon) on Jun 15, 2012 at 15:53 UTC | |
by heatblazer (Scribe) on Jun 16, 2012 at 08:16 UTC |