如何访问FB Page的新指标“正在谈论这个”? FQL?图形? [英] How to access FB Page's new metric "are talking about this"? FQL? Graph?

查看:149
本文介绍了如何访问FB Page的新指标“正在谈论这个”? FQL?图形?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

FB使这个EdgeRank公制(每页显示) - 现在如何访问它来收集统计信息?

FB makes this EdgeRank metric Public (shown on every page) - now how to access it to collect stats?

推荐答案

几个星期前我就问过Facebook团队呢?它似乎在当时被忽视,他们会研究一下。我刚刚检查了Graph API,现在似乎在那里!这是一种从Graph API请求数据并使其返回JSON格式的结果集的快速方法:

I asked the Facebook team about this a couple of weeks ago; it seems it was overlooked at the time and they would look into it. I just checked out the Graph API today and it appears to be in there now! Here is a quick way to request the data from the Graph API and have it return a JSON formatted result set:

如果您只想谈论的数量可以使用此格式:
https://graph.facebook.com/[PageID或页面名称]?fields = talking_about_count

If you want just the count of talking about you can use this format: https://graph.facebook.com/[PageID or Page Name]?fields=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"
}

您还可以将其与其他字段组合:

You can also combine this with other fields:

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

返回:

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

希望这有帮助,
-Paul

Hope this helps, -Paul

这篇关于如何访问FB Page的新指标“正在谈论这个”? FQL?图形?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆