1

我正在尝试通过执行以下 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
  }
}

我的查询有什么问题?

4

1 回答 1

0

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

例子

于 2013-12-12T07:33:47.113 回答