FBML 获取链接的共享计数?
我需要获取给定网址的点赞数。如何操作? 我还可以获得 Facebook 页面的总粉丝数吗?
I need to get the number of likes for a given url.how to do it?
also can i get the total fancounts of a fb page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
地址
返回:
因此,要更改 URL 的 id 参数并通过 jQuery 获取分享数,请使用:
Address
returns:
So to change id parametr for your URL and get your shares count via jQuery use:
使用 Facebook 的 API。只需将您感兴趣的 URL 添加到此 URL 的末尾即可:
http://api.facebook.com/restserver.php?method=links.getStats&urls=
<强>示例:
http://api.facebook.com/restserver.php?method=links.getStats&urls=stackoverflow.com,serverfault.com
我认为粉丝数只是 URL 的“喜欢”数对于 FB 页面。
源代码,带有用于解析输出的 PHP 代码: 获取来自 Facebook 的网址的点赞
Use Facebook's API. Just add the URL's you are interested in to the end of of this URL:
http://api.facebook.com/restserver.php?method=links.getStats&urls=
example:
http://api.facebook.com/restserver.php?method=links.getStats&urls=stackoverflow.com,serverfault.com
I think the fancount is just the "like" count of the URL for the FB page.
Source, with PHP code for parsing the output: Get likes on urls from Facebook
FQL
link_stat
将是 REST API 的一个很好的替代方案(Facebook 正在弃用 REST API)https://developers.facebook.com/docs/reference/fql/link_stat/
FQL
link_stat
would be a nice alternative to rest API (facebook is in process of deprecating the REST API)https://developers.facebook.com/docs/reference/fql/link_stat/