1
我試圖通過根據開發文檔()所有者字段建立索引,但圖中執行以下FQL問題FQL NoIndexFunctionException對索引字段
SELECT created_time FROM link WHERE owner = me()
查詢創建時間,Facebook的鏈接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
}
}
我的查詢出了什麼問題?
在[圖形API資源管理器]對我的作品(https://developers.facebook.com/tools/explorer?fql=SELECT%20created_time%20FROM%20link%20WHERE%20owner%20%3D %20me())。你從哪裏運行查詢? –