1
是否有可能檢索已向我發送請求的app_id?我試圖通過FQL檢索給予user_id的apprequest
Select app_id from apprequest where recipient_uid=me();
這樣做,但我得到了一個結果作爲
{
"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
}
}
這有什麼錯我的邏輯是什麼?無論如何,我可以獲得通過FQL向我發送請求的應用程序列表嗎?
非常感謝。我將我的代碼重寫爲$ response = $ facebook-> api('me/apprequests');但我現在面臨的問題是我得到的結果總是空的。我問了一些朋友向我發送應用請求,但我仍然得到空的結果。爲什麼我不能得到正確的結果。 – user2377219