PHP を使用してこの Facebook グラフ呼び出しからシェア数を取得しようとしていますが、運がありません:
http://graph.facebook.com/?ids=http://google.com
1を試す
$content = file_get_contents("http://graph.facebook.com/?ids=http://google.com");
$parsedJson = json_decode($content, true);
echo $parsedJson['shares'];
トライ2
$content = file_get_contents("http://graph.facebook.com/?ids=http://google.com");
$parsedJson = json_decode($content, true);
echo $parsedJson->shares;
私は何を間違っていますか?