使用api v2.9。
include('controller/facebook/init.php');
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->get(
'/POST_ID/likes',
'ACCESS_TOKEN',
'summary=total_count'
);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
$graphEdge = $response->getGraphEdge();
print_r($graphEdge);
有问题的目标是获得帖子的总体喜欢,我也相信改变术语“喜欢”这个词。对于股票或评论,将返回与帖子相对应的数据。
返回的打印件是图片的打印件,但不返回总计。
答案 0 :(得分:0)
这对我有用
$response = $fb->get(
'/POST_ID/likes?summary=true',
'ACCESS_TOKEN'
);