5

我对我的 facebook 页面拥有“Insights Analyst”权限,我尝试使用 Graph API Explorer 来获取指标 page_fans

我用'read_insights'和'manage_pages'“获取访问令牌”,并“提交”一个看起来像的图形API调用

GET /<page_id>/insights/page_fans

但后来我得到一个空洞的回应。(除了 page_story_adds_unique、page_storytellers 和 page_admin_num_posts 之外的所有指标都会出现这种情况)

{
  "data": [
  ], 
  "paging": {
    "previous": "https://graph.facebook.com/<page_id>/insights/post_storytellers/?since=1369004893&until=1369264093", 
    "next": "https://graph.facebook.com/<page_id>/insights/post_storytellers/?since=1369523293&until=1369782493"
  }
}

我缺少什么权限?我究竟做错了什么?

4

1 回答 1

1

目前,洞察中缺少的数据积压似乎比平时要多。使用since和的值until来查看数据的位置。

/<page_id>/insights/page_fans?since=1369008000&until=1371686400

这些数字是用于指定所需日期范围的 unix 时间戳。如果范围太大,那么你会得到

"error": {
    "message": "Unsupported operation", 
    "type": "FacebookApiException", 
    "code": 100
  }

我知道这很令人沮丧,而且 Facebook 似乎没有任何适当的方法来检查数据是否积压。

于 2013-06-03T10:15:06.670 回答