Hallo 1unitedpower,
Mein Parser kann mit dem Content-Type umghen In PHP ein Einzeiler:
$json = json_decode(file_get_contents('php://input'));
Das bekommt man auch in Perl als Ein-, nagut Zweizeiler, hin ;-)
use JSON;
my $json = decode_json(<STDIN>);
LG,
CK