1

我需要用 PHP 检查 Facebook Like Button 中显示了多少喜欢。

由于某些原因,我不能只执行 FQL 查询来获得喜欢的数量。我必须对 FB Like Button html/js 代码进行操作。

例子:

<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

<fb:like href="http://www.example.com" send="false" width="450" show_faces="false"></fb:like>

我真的不想安装和使用一些 JS 解释器来检索 Likes 值。有没有更简单的方法来做到这一点?

4

1 回答 1

0

您可以使用 FQL 获取喜欢的数量。例如,我使用Like Button 插件创建工具创建了这个 Like 按钮:

<fb:like href="http://plooza.com" send="false" width="450" show_faces="true"></fb:like>

然后我可以使用 FQL 获取喜欢的数量,使用Graph API Explorer作为快速测试:

SELECT url, normalized_url, share_count, like_count, comment_count, total_count, commentsbox_count, comments_fbid, click_count FROM link_stat WHERE url="plooza.com"

输出是:

{
  "data": [
    {
      "url": "plooza.com", 
      "normalized_url": "http://www.plooza.com/", 
      "share_count": 0, 
      "like_count": 2, 
      "comment_count": 0, 
      "total_count": 2, 
      "commentsbox_count": 0, 
      "comments_fbid": "1015079258276xxxx", 
      "click_count": 0
    }
  ]
}
于 2012-08-14T19:38:55.787 回答