$json = file_get_contents('php://input');
$obj = json_decode($json,true);
Acho que você está passando a variável errada. Você deve passar
$json
em json_decode
como mostrado acima. $json = file_get_contents('php://input');
$obj = json_decode($json,true);
$json
em json_decode
como mostrado acima.