【发布时间】:2012-09-06 09:05:55
【问题描述】:
有没有办法获得 Facebook 页面上特定帖子的“人们谈论这个”统计数据? Insights API 并没有说这是可能的。 (post_storytellers 不存在)
【问题讨论】:
标签: facebook-graph-api statistics facebook-page facebook-insights
有没有办法获得 Facebook 页面上特定帖子的“人们谈论这个”统计数据? Insights API 并没有说这是可能的。 (post_storytellers 不存在)
【问题讨论】:
标签: facebook-graph-api statistics facebook-page facebook-insights
“谈论此事的人”将各种互动汇总为一个指标,包括:
据我所知,如果不直接抓取页面,则无法使用图形 api 检索此值。
但是,您可以通过 FQL 检索 url 的 total_count,该 url 是共享、喜欢、cmets 的聚合,例如:https://graph.facebook.com/fql?q=SELECT%20total_count%20FROM%20link_stat%20WHERE%20url='https://www.stackoverflow.com'
更多信息:https://developers.facebook.com/docs/reference/fql/link_stat
【讨论】: