FBML 获取链接的共享计数?

发布于 2024-10-11 11:23:39 字数 53 浏览 2 评论 0原文

我需要获取给定网址的点赞数。如何操作? 我还可以获得 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

唯憾梦倾城 2024-10-18 11:23:39

地址

http://graph.facebook.com/?id=http: //facebook.com

返回:

{“id”:“http://facebook.com”,“分享”:54290530,“评论”:1244}

因此,要更改 URL 的 id 参数并通过 jQuery 获取分享数,请使用:

jQuery(document).ready(function($){
    $.getJSON(
        "http://graph.facebook.com",
        { id : "http://facebook.com" }, //here should be your URL
        function(json){
            //var data = jQuery.parseJSON();
            alert( json.shares );
        }
    );
});

Address

http://graph.facebook.com/?id=http://facebook.com

returns:

{"id": "http://facebook.com","shares": 54290530,"comments": 1244}

So to change id parametr for your URL and get your shares count via jQuery use:

jQuery(document).ready(function($){
    $.getJSON(
        "http://graph.facebook.com",
        { id : "http://facebook.com" }, //here should be your URL
        function(json){
            //var data = jQuery.parseJSON();
            alert( json.shares );
        }
    );
});
━╋う一瞬間旳綻放 2024-10-18 11:23:39

使用 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

∞觅青森が 2024-10-18 11:23:39

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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文