Gives null on using json_decode on facebook graph object sent from android to php.
$json = file_get_contents('php://input');
$data = json_decode($json);
var_dump($data);
returns NULL when search i found this json_decode returns NULL after webservice call
used same code with all possibilities
$json = file_get_contents('php://input');
$json = str_replace('"', '"', $json);
$json = trim(substr($json ,3));
$data = json_decode($json);
var_dump($data);
tried this also ,returns null