我正在使用LoginButton
Facebook SDK 中提供的用户登录,在我的应用程序中,稍后我使用以下内容FQL
检索关键字中包含 Sherlock 的所有页面。
SELECT page_id FROM page WHERE keywords = 'Sherlock'
但是如果给了我以下异常
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
即使keywords
列是可索引的,如
https://developers.facebook.com/docs/reference/fql/page上所示。
谁能告诉我我做错了什么?