Error 404 when receive POST
问题 I need send a json POST from android to web server with php. I try a lot of codes but don't works. Now I try a simply POST with Postman, with and without send data. And always receive a 404 error. If I send data with GET the page work fine. See the php, for if you want to test: web: http://gclimb.com/Androidphp/index.php <?php $json = file_get_contents('php://input'); $obj = json_decode($json); echo $obj["username"]; echo $obj["pass"]; if ($_POST["username"]) { echo $_POST["username"]; } if (