索引字段上的FQL NoIndexFunctionException

我试图通过执行下面的fql问题来查询创建时间的facebook链接

SELECT created_time FROM link WHERE owner = me()

根据开发者文档(https://developers.facebook.com/docs/reference/fql/link),所有者字段被编入索引,但图api会引发以下异常。

{
  "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
  }
}

我的查询出了什么问题?


选择Graph API Explorer文本框上方的FQL查询按钮,它工作正常。 链接转到Graph API编辑器而不是FQL编辑器,这是错误的。

链接地址: http://www.djcxy.com/p/32579.html

上一篇: FQL NoIndexFunctionException on indexed field

下一篇: New Facebook API fetching newsfeed and its comments