Facebook Like 按钮减少计数
我正在使用 facebook Like 按钮
<fb:like href="My URL" layout="button_count"></fb:like>
,昨天是 119,今天是 90,很多其他页面也会出现这种情况 我没有任何解释可以告诉业务团队,因为他们认为这是我们的问题。
我试图搜索 Facebook 如何检索计数或发生了什么导致计数减少,但我什么也没找到。
有人可以帮助我为什么会发生这种情况,或者如何解决...
I am using the facebook like button
<fb:like href="My URL" layout="button_count"></fb:like>
and yesterday it was 119 and today it's 90 and it happens with lots of other pages
i don't have an explanation to tell to the business team as they think that it's our problem.
i tried to search about how does facebook do retrieving the count or what happened makes it decreasing the count but i found nothing.
would anybody help me why is this happening, or how to fix ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 fql 示例找出实际计数
: $fql = "SELECT share_count, like_count, comment_count, Total_count FROM link_stat WHERE url='MYURL'";
$response = $facebook->api(array('method' => 'fql.query','query' =>$fql,));
print_r($响应);
您将得到实际计数
Try finding out the actual count using the fql
example : $fql = "SELECT share_count, like_count, comment_count, total_count FROM link_stat WHERE url='MYURL'";
$response = $facebook->api(array('method' => 'fql.query','query' =>$fql,));
print_r($response);
You will get the actual count