Facebook 关键洞察指标已弃用——替代方案未记录?
位于 https://developers.facebook.com/docs/reference/fql/insights/ Facebook 表示::
We are deprecating some old insights. These metrics are marked as __deprecated__
throughout this document. After 12/21/2011, data for these metrics won't be available
prior to 07/19/2011 -- please download this data before this 12/21/2011. These insights
will be completely removed from API after 02/15/2012.
奇怪的是,https://developers.facebook.com/roadmap/
弃用列表中有 (ao):
- page_active_users
- page_wall_posts
- page_comment_adds
- page_like_adds
- page_fans_gender_age
- page_fans_country
我的问题是,哪些新指标取代了上面列出的指标?
Over at https://developers.facebook.com/docs/reference/fql/insights/ Facebook states::
We are deprecating some old insights. These metrics are marked as __deprecated__
throughout this document. After 12/21/2011, data for these metrics won't be available
prior to 07/19/2011 -- please download this data before this 12/21/2011. These insights
will be completely removed from API after 02/15/2012.
Strangely enough, this is not noted in the developer roadmap over at https://developers.facebook.com/roadmap/
On the deprecation list are (a.o.):
- page_active_users
- page_wall_posts
- page_comment_adds
- page_like_adds
- page_fans_gender_age
- page_fans_country
My question is, what new metrics replace the metrics listed above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过 Graph API 访问此指标(使用页面的见解连接):
https://graph.facebook.com/{pageId}/insights
更多信息请点击此处
Facebook 只是汇总了一些指标。例如,page_fans_gender 和 page_fans_age 现在将变为 page_fans_gender_age 等。
You can access this metrics via Graph API (using insights connetction for your page):
https://graph.facebook.com/{pageId}/insights
More information here
Facebook just aggregate some metrics. E.g. page_fans_gender and page_fans_age would be now as page_fans_gender_age, etc.
我认为没有直接替代
page_active_users
的方法。我想说 page_impressions 是最接近的,但恕我直言,您必须改变查看数据的视角,因为这显然是 Facebook 通过更改 Insights API 所做的事情(或者至少希望我们这样做)。您可以获取页面的帖子(
https://graph.facebook.com/[PAGEID]/posts
)、帖子评论(https://graph.facebook.com/[PAGEID]_ [POSTID]/comments
)和帖子喜欢(https://graph.facebook.com/[PAGEID]_[POSTID]/likes
)并自己按天聚合它们,而不是使用已弃用的指标page_wall_posts
、page_comment_adds
和page_like_adds
。如果我看文档正确的话,指标
page_fans_gender_age
和page_fans_country
并未弃用,并且仍保留在 API 中。I think there's no direct replacement for
page_active_users
. I would say thatpage_impressions
are closest but IMHO you have to change perspective from which you look to your data because that's evidently what Facebook does by changes in Insights API (or at least wants from us).You can get page's posts (
https://graph.facebook.com/[PAGEID]/posts
), posts comments (https://graph.facebook.com/[PAGEID]_[POSTID]/comments
) and posts likes (https://graph.facebook.com/[PAGEID]_[POSTID]/likes
) and aggregate them by days yourself instead of using deprecated metricspage_wall_posts
,page_comment_adds
andpage_like_adds
.Metrics
page_fans_gender_age
andpage_fans_country
aren't deprecated and remains in API if I look right to docs.