FQL NoIndexFunctionException on indexed field

I'm trying to query the created time for a facebook link by executing the following fql question

SELECT created_time FROM link WHERE owner = me()

according to the developers documentation (https://developers.facebook.com/docs/reference/fql/link) the owner field is indexed but the graph api throws the following exception.

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

what is wrong with my query?


Select the FQL Query button above the text box on the Graph API Explorer and it works fine. The links go to the Graph API editor instead of the FQL editor, which is wrong.

Example

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

上一篇: Facebook Graph API:列出所有域

下一篇: 索引字段上的FQL NoIndexFunctionException