Facebook graph api 从FQL api获取见解的问题

Facebook graph api 从FQL api获取见解的问题,facebook-graph-api,facebook-fql,Facebook Graph Api,Facebook Fql,我有兴趣从insights返回一些指标,但我很难从FQL获得结果 我需要得到以下信息。 页面印象/喜欢/分享 发布印象/喜欢/分享/评论 用于后期印象 fql?q=SELECT metric, value FROM insights WHERE object_id=#### AND metric='post_impressions_unique' AND end_time=end_time_date('2011-10-30') AND period=period('lifetime') fq

我有兴趣从insights返回一些指标,但我很难从FQL获得结果

我需要得到以下信息。 页面印象/喜欢/分享 发布印象/喜欢/分享/评论

用于后期印象

fql?q=SELECT metric, value FROM insights WHERE object_id=#### AND metric='post_impressions_unique' AND end_time=end_time_date('2011-10-30') AND period=period('lifetime') 
fql?q=SELECT metric, value FROM insights WHERE object_id=#### AND metric='page_impressions' AND end_time=end_time_date('2011-10-30') AND period=period('lifetime') 
页面印象

fql?q=SELECT metric, value FROM insights WHERE object_id=#### AND metric='post_impressions_unique' AND end_time=end_time_date('2011-10-30') AND period=period('lifetime') 
fql?q=SELECT metric, value FROM insights WHERE object_id=#### AND metric='page_impressions' AND end_time=end_time_date('2011-10-30') AND period=period('lifetime') 
我返回空数据集:

{
  "data": [
  ]
}

我做错了什么?

一开始我也有同样的问题。根据文档,“页面印象”和“页面印象独特”只能以“天”、“周”和“天28”为周期。如果这不能解决问题,请尝试更改为我的问题所在的其他结束日期。

请告知我是否可以提供更多信息来帮助诊断此问题。问题发生的日期是什么?在您所寻找的时期,您必须将其更改为什么?