我使用了以下网址来计算;
这给我的结果像;
{
"data": [
{
"total_count": 95,
"comment_count": 6,
"like_count": 24,
"share_count": 65
}
]
}
这个结果给了我全局计数,但我需要只计算我和他人共享的网址。出现在我的脸谱仪表板上。
答案 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"