我需要向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值。有没有更简单的方法呢?
答案 0 :(得分:0)
您可以使用FQL获得喜欢的数量。例如,我使用Like Button plugin creator tool创建了这个按钮:
<fb:like href="http://plooza.com" send="false" width="450" show_faces="true"></fb:like>
然后我可以使用Graph API Explorer作为快速测试,使用FQL获得喜欢的数量:
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
}
]
}