I am trying to read in a JSON message in my PHP app and this is my php code:
$json = file_get_contents(\'php://input\'); $obj = json_decode($json, TRUE); ech
$obj = json_decode($json);
Just remove the true