我试图使用 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;
我究竟做错了什么?