如何访问FB专页的新指标“正在谈论这个”?质量等级?图形?
FB 公开了此 EdgeRank 指标(显示在每个页面上) - 现在如何访问它来收集统计数据?
FB makes this EdgeRank metric Public (shown on every page) - now how to access it to collect stats?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
几周前我向 Facebook 团队询问了这个问题;看来当时它被忽视了,他们会调查它。我今天刚刚检查了 Graph API,它现在似乎就在那里!以下是从 Graph API 请求数据并让它返回 JSON 格式的结果集的快速方法:
如果您只想要谈论的计数,可以使用以下格式:
https://graph.facebook.com/[PageID 或页面名称]?fields=talking_about_count
示例:
返回:
您还可以将其与其他字段结合使用:
返回:
希望这有帮助,
——保罗
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:
Returns:
You can also combine this with other fields:
Returns:
Hope this helps,
-Paul
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