你如何获得URL(喜欢和分享)的总喜欢?

时间:2012-03-17 02:59:50

标签: facebook facebook-graph-api facebook-like facebook-social-plugins

"喜欢"我已删除在我的页面上的插件显示了直接点击按钮的次数,以及页面URL被分享的次数或者Like已被评论过的次数。

当我使用Graph API检查我的对象时,它只显示直接" Like"点击。这是一个示例对象:

{
   "id": "17678692xxxxxxx",
   "name": "The Dali Lama Returns",
   "picture": "http://profile.ak.fbcdn.net/hprofile-ak-snc4/161984_176786925772923_6855xxxxxxx.jpg",
   "link": "http://mysite.com/8/the-dali-lama-returns",
   "likes": 1,
   "app_id": 478xxxxxxx,
   "category": "Unknown",
   "is_published": true,
   "description": "The Dali Lama will speak, and we will listen.",
   "about": "The Dali Lama will speak, and we will listen.",
   "can_post": true
}

这意味着在某人点击了我喜欢的按钮并写了相关评论后,按钮会显示" 2",但我的对象只会显示一个计数。

有没有办法让完整的"喜欢"算上按钮显示在我的页面上?

2 个答案:

答案 0 :(得分:11)

我找到了两种方法。使用图形api的新方法似乎是使用fql,如下面的请求所示:

https://graph.facebook.com/fql?q=SELECT url, normalized_url, share_count, like_count, comment_count, total_count, commentsbox_count, comments_fbid, click_count FROM link_stat WHERE url='http://mysite.com/8/the-dali-lama-returns'

旧的方式,Rest API正在被弃用:

link.getStats()

https://developers.facebook.com/docs/reference/rest/links.getStats/

答案 1 :(得分:0)

我知道这个帖子已经过时了不确定你是否只询问如何收纳柜台,但这里有两件你可以尝试的东西。

SharedCount:您可以在线查看统计信息,也可以集成他们的API。但是,它的免费约。每月10K API请求。

编辑:你也可以看到这个问题。 https://wordpress.stackexchange.com/questions/133536/display-total-number-of-social-shares

TheBuzzz:您可以在线测试任何网址&返回来自热门社交媒体网站的总分享数量&还返回Moz Backlinks。

希望这有帮助