0

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;

私は何を間違っていますか?

4

2 に答える 2

3

試す

echo $parsedJson["http://google.com"]['shares'];
于 2013-07-31T16:33:55.733 に答える
0

これはうまくいきます!

echo ($parsedJson->{'http://google.com'}->shares);
于 2013-07-31T16:46:34.937 に答える