http://www.perlmonks.org?node_id=976439


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.

perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'