如何访问FB专页的新指标“正在谈论这个”?质量等级?图形?

发布于 2024-12-08 10:45:51 字数 54 浏览 1 评论 0原文

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

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冰雪梦之恋 2024-12-15 10:45:51

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

如果您只想要谈论的计数,可以使用以下格式:
https://graph.facebook.com/[PageID 或页面名称]?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"
}

您还可以将其与其他字段结合使用:

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

返回:

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

希望这有帮助,
——保罗

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:

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

Examples:

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

Returns:

{
   "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

Returns:

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

Hope this helps,
-Paul

若相惜即相离 2024-12-15 10:45:51

Facebook 称之为“故事”...以下是获取它的方法:

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

因此,您将用您想要收集的页面 ID 替换 PAGE_ID数据来自...,然后是带有访问令牌的 ACCESS_TOKEN。

您还可以更改/day?到任一/周?或/days_28?专门收集这些数据...

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

page_stories
页面故事讲述者
page_stories_by_story_type
page_storytellers_by_story_type
page_storytellers_by_age_gender
page_storytellers_by_country
page_storytellers_by_locale

希望有帮助!

-缺口

Facebook calls this "Stories"... Here's how you get it:

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

So, you will replace PAGE_ID with the page ID you want to gather the data from... and then ACCESS_TOKEN with the access token.

You can also change the /day? to either /week? or /days_28? to gather that data specifically...

Other options for the story telling insights are:

page_stories
page_storytellers
page_stories_by_story_type
page_storytellers_by_story_type
page_storytellers_by_age_gender
page_storytellers_by_country
page_storytellers_by_locale

Hope that helps!

-Nick

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文