in reply to Re^13: json return value
in thread json return value
When I post the same json test to my test url using a perl client and print it back using Data::Dumper, I get the response
$VAR1 = '{"imei":13226004711772,"id":20}'; which is fine.
However, if I post it using our embedded C commands in our unit, I receive ...
$VAR1 = undefined.
...not much help there.
I have posted it to another website based on PHP and the data shows up there. I get the response
(POST: ) (BODY: {"par":12345678912345,"id":20 }) which I expect.
so I know it is being posted OK. It looks at the moment as it our unit is coding it in a format that this line..
my $data = $q->param('POSTDATA');
is having a problem with.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^15: json return value
by Anonymous Monk on Jul 28, 2013 at 02:46 UTC | |
by stenasc (Novice) on Jul 30, 2013 at 13:05 UTC | |
by Anonymous Monk on Jul 30, 2013 at 13:16 UTC | |
by stenasc (Novice) on Jul 30, 2013 at 13:53 UTC | |
by Anonymous Monk on Jul 30, 2013 at 14:14 UTC |