コマンドライン(Ubuntu)からPOSTリクエストを送信しています:
echo -n '{"prop":"value"}' | POST -c -U "application/json" http://site.com/test
サーバースクリプトはその$_POSTを出力します。
<?php
var_dump ($_POST);
?>
私は出力で見る:Content-Length: 16
、しかしサーバーの応答で私は得る
array(0){
}
どこを間違えたの?