In PHP, php://input
enables to read the raw request body data, which is what I need in this case. However the rest of the server-side backbone is all written in PERL, so I tried to find the alternative to php://input
-- I couldn't.
Short question:
How can one get the raw POST data (request body) in Perl? (the CGI variable showed absolutely nothing).
Thanks!