如何访问FB页面的新指标"are talking about this"?FQL?图?



FB使这个EdgeRank指标公开(显示在每个页面上)-现在如何访问它来收集统计数据?

几个星期前我问过Facebook团队这个问题;这似乎在当时被忽视了,他们会调查的。我今天刚刚检查了图形API,它现在似乎在那里!下面是一种从Graph API请求数据并让它返回JSON格式的结果集的快速方法:

如果你只想知道谈论的次数,你可以使用这种格式:https://graph.facebook.com/[网页id或网页名称]?字段= talking_about_count

例子:

https://graph.facebook.com/techcrunch?fields=talking_about_count
https://graph.facebook.com/8062627951?fields=talking_about_count

的回报:

{
   "talking_about_count": 11937,
   "id": "8062627951"
}

也可以与其他字段组合使用:

https://graph.facebook.com/techcrunch?fields=name,category,likes,talking_about_count

的回报:

{
   "name": "TechCrunch",
   "category": "Company",
   "likes": 364886,
   "talking_about_count": 11937,
   "id": "8062627951"
}

希望这有帮助,保罗

Facebook称之为"Stories"…以下是获取方法:

https://graph.facebook.com/PAGE_ID/insights/page_stories/day?access_token=ACCESS_TOKEN

因此,将PAGE_ID替换为希望从中收集数据的页面ID…然后ACCESS_TOKEN与访问令牌。

您还可以更改/day?去哪一个/星期?或/days_28吗?收集这些数据…

其他选项的故事讲述的见解:

page_storiespage_storytellerspage_stories_by_story_typepage_storytellers_by_story_typepage_storytellers_by_age_genderpage_storytellers_by_countrypage_storytellers_by_locale

希望有帮助!

尼克

相关内容

最新更新