对于 URL,您可以使用 FQLlink_stat
表来获取此数据,但它似乎是每个 URL。
link_stat
表格文档- https://developers.facebook.com/docs/reference/fql/link_stat/
使用:
https://graph.facebook.com/fql?q=SELECT%20url,%20normalized_url,%20share_count,%20like_count,%20comment_count,%20total_count,%20commentsbox_count,%20comments_fbid,%20click_count%20FROM%20link_stat%20WHERE%20url=%27http://www.bbc.co.uk/news/%27
会给你:
{
"data": [
{
"url": "http://www.bbc.co.uk/news/",
"normalized_url": "http://www.bbc.co.uk/news/",
"share_count": 31155,
"like_count": 12932,
"comment_count": 17584,
"total_count": 61671,
"commentsbox_count": 2,
"comments_fbid": 405555547748,
"click_count": 1032
}
]
}
当然,使用这种方法,您需要为每个页面进行 API 调用。
也许有人知道更好的方法。