我想获取一个Facebook页面的见解数据。我已经尝试过使用带有此网址的图表API:
https://graph.facebook.com/149279625121774/insights/?access_token=XXXX
但它提供了空数据:
{ "data": [
], "paging": {
"previous": "https://graph.facebook.com/149279625121774/insights/...",
"next": "https://graph.facebook.com/149279625121774/insights/..."
}
}
“149279625121774”是页面ID。
有人为此帮我吗?
最佳答案
更新了答案:
Insights
只能作为数组检索。要阅读Insights
,您需要
access_token
,用于公开可用的application_active_users
指标access_token
的通用应用程序Insights
read_insights
permissions有关可用的见解的更多详细信息,请查看FQL Insights table
这是我的评论:
read_insights
权限。 /
关于facebook - 获取facebook页面的见解数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4814428/