Perl HTTP Daemon Server- Reading POST JSON body

1.1k Views Asked by At

I was using HTTP::Daemon to create a http server for my API. With the help of following example and doc, I was able to create a basic HTTP server.

However, my API should accepts JSON as a body in post request to the server. So, I need to read the JSON so that I can process it. I know, how to read url param $r->uri->query_form();

Is there a way to read POST JSON?

1

There are 1 best solutions below

0
On BEST ANSWER
use JSON;
use Data::Dumper;
my $json = decode_json($r->content);
print Dumper $json;