Facebook graph api FacebookQL在where子句中请求可索引列,而where子句本身是可索引的

Facebook graph api FacebookQL在where子句中请求可索引列,而where子句本身是可索引的,facebook-graph-api,get,facebook-fql,Facebook Graph Api,Get,Facebook Fql,我在Facebook上尝试了以下FQL: SELECT checkin_id FROM checkin WHERE author_uid = me() 然而,我得到以下回应: { "error": { "message": "Your statement is not indexable. The WHERE clause must contain an indexable column. Such columns are marked with * in the tables

我在Facebook上尝试了以下FQL:

SELECT checkin_id FROM checkin WHERE author_uid = me()

然而,我得到以下回应:

{
  "error": {
    "message": "Your statement is not indexable. The WHERE clause must contain an indexable column. Such columns are marked with * in the tables linked from http://developers.facebook.com/docs/reference/fql ", 
    "type": "NoIndexFunctionException", 
    "code": 604
  }
}
但是在文档中标记为可索引


现在可以做什么?

提交错误报告对我来说很好。CBroe你能描述一下你的权限吗?@CBroe你说得对!它在那里工作!请写下来作为答复,我不得不接受OTHankyou@phwd,我已经提交了一份bug报告!