我尝试使用Graph API Explorer从Insights部分获取有用的数据。
我尝试过不同的指标和日期,数据结果始终为空。
我能够在我的页面信息中心查看喜欢的数量,并根据它选择一个范围,但我仍然没有看到任何数据。
如果access_key是个问题,它会返回错误说明,还是只返回空结果?
这是一个受欢迎的公司的调试输出,我想在过去几周内会有新的喜欢。
=== Query
curl -i -X GET \
"https://graph.facebook.com/v2.8/14226545351/insights/page_positive_feedback_by_type?since=1487788679&until=1490812690&access_token=<access token sanitized>"
=== Access Token Info
{
"perms": [
"user_likes",
"manage_pages",
"pages_show_list",
"public_profile"
],
"page_id": 167544343274096,
"user_id": "10152810337959467",
"app_id": 145634995501895
}
=== Parameters
- Query Parameters
{
"since": "1487788679",
"until": "1490812690"
}
- POST Parameters
{}
=== Response
{
"data": [],
"paging": {
"previous": "https://graph.facebook.com/v2.8/14226545351/insights?access_token=<access token sanitized>&pretty=0&since=1484764668&until=1487788679&metric=page_positive_feedback_by_type",
"next": "https://graph.facebook.com/v2.8/14226545351/insights?access_token=<access token sanitized>&pretty=0&since=1490812690&until=1493836701&metric=page_positive_feedback_by_type"
},
"__debug__": {}
}
=== Debug Information from Graph API Explorer
- https://developers.facebook.com/tools/explorer/145634995501895/?method=GET&path=14226545351%2Finsights%2Fpage_positive_feedback_by_type%3Fsince%3D1487788679%26until%3D1490812690&version=v2.8
有人能够提供实际的工作示例吗?我还没有碰到过。
答案 0 :(得分:3)
我在Graph API资源管理器中发现,当您生成访问令牌时,您需要为其授予“read_insights”权限。
此外,这只适用于您的帐户有权访问该给定对象的网页。
不幸的是,该区域的文档非常模糊,并且没有权限错误消息给出。
答案 1 :(得分:0)
这可能会晚一点,但迟到总比我好:)
在this Facebook docs page上,您可以找到所有可以使用的指标的列表。
对于空数据,我有同样的问题。我永远找不到从Facebook Insights获取数据的方法。但要感谢备忘单,我可以举个例子:
https://graph.facebook.com/{page_id}?fields=insights.metric(page_fans)&access_token={access_token}
编辑
用户Ravi Patel还提供了一个很好的示例,展示了如何从您的帖子中获取见解:
/{page-id}/posts?fields=insights.metric(post_impressions_fan,post_engaged_users)