2013-10-26 73 views
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 
    } 
} 

我的查詢出了什麼問題?

+0

在[圖形API資源管理器]對我的作品(https://developers.facebook.com/tools/explorer?fql=SELECT%20created_time%20FROM%20link%20WHERE%20owner%20%3D %20me())。你從哪裏運行查詢? –

回答

0

選擇圖表API Explorer上的文本框上方的FQL查詢按鈕,它工作正常。鏈接轉到Graph API編輯器而不是FQL編輯器,這是錯誤的。

Example