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


in reply to Re^15: json return value
in thread json return value

Perl module was 3.15, upgraded to 3.63. Still no difference.

$VAR1 = undef;

returned after I do a post to the website. Also tried setting $CGI::PARAM_UTF8=0; but again no difference.

The following php lines allow the data to be decoded correctly but again I'm no php expert.

$post_body = file_get_contents('php://input'); $jdata = CJSON::decode($post_body);

Replies are listed 'Best First'.
Re^17: json return value
by Anonymous Monk on Jul 30, 2013 at 13:16 UTC
    so Dumper the $query

      Can you be more detailed please? What variable should I dump. Here is my current server side code.

      #!/usr/bin/env perl use strict; use warnings; use CGI (); use JSON::PP (); use Data::Dumper; $CGI::PARAM_UTF8=0; my $q = CGI->new; my $data = $q->param('POSTDATA'); my $json = JSON::PP->new->utf8; print $q->header("application/json"); print Dumper($data);

        Can you be more detailed please? What variable should I dump. Here is my current server side code.

        Dumper($q)