在FQL“页面”表的文档底部,它说
注意:可以指定其他列上的其他过滤器,但它们可能会降低查询效率。
我想按页面类型过滤,但如果我尝试查询
SELECT name FROM page WHERE type = 'Musician/band'
"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
}
有没有按页面类型过滤?
更新:
我的 Graph Search 测试版刚刚在我的帐户中启动,现在我可以通过我的浏览器和 facebook 帐户使用以下网址执行此操作:
http://www.facebook.com/search/musician/pages/114952118516947/home-residents/pages-liked/intersect
有没有办法以 JSON 或 XML 格式获取这些数据?