1

使用https://graph.facebook.com/id/likes?access_token=XXXXXXX适用于某些网址,就像http://graph.facebook.com/?ids=url但有些网址来自诸如washingtonpost.com 和 techcrunch 之类的位置。 com 没有“喜欢”数据,但它必须可用,因为 itstrending.com 列出了这些网站,并且喜欢计数准确。

谢谢

4

2 回答 2

2

您可以通过FQL做到这一点:

SELECT like_count FROM link_stat WHERE url="http://www.washingtonpost.com"

返回 287。

于 2010-08-11T19:12:09.000 回答
2

在挖掘了更多之后,我发现了这个:http: //developers.facebook.com/docs/reference/rest/links.getStats

它为您提供对 url 的分享、喜欢和评论。

于 2010-08-11T21:29:09.610 回答