如何获得Facebook评论,喜欢和分享用户共享的帖子数?

时间:2014-04-29 13:43:56

标签: php facebook facebook-graph-api facebook-like facebook-comments

我使用了以下网址来计算;

https://graph.facebook.com/fql?q=SELECT%20total_count,comment_count,like_count,share_count%20FROM%20link_stat%20WHERE%20url=%27http://buff.ly/1mtu81f%27

这给我的结果像;

{

"data": [
    {
        "total_count": 95,
        "comment_count": 6,
        "like_count": 24,
        "share_count": 65
    }
]

}

这个结果给了我全局计数,但我需要只计算我和他人共享的网址。出现在我的脸谱仪表板上。

1 个答案:

答案 0 :(得分:1)

要实现此目的,您必须查询流FQL表(https://developers.facebook.com/docs/reference/fql/stream/)。因此,您需要“read_stream”权限。

试试这个:

select post_id, like_info, comment_info, share_info from stream where source_id=me() and attachment.href = "http://buff.ly/1mtu81f"