FQL:了解电子邮件,名字和姓氏。在Facebook上获取用户ID的FQL代码是什么?

时间:2013-10-15 02:23:59

标签: facebook-fql

我只知道一个人的电子邮件,名字和姓氏。是否可以通过FQL获取用户ID?谢谢。

1 个答案:

答案 0 :(得分:0)

您在facebook中的用户表中拥有的列不可索引。对于使用where子句的提取,您必须具有可索引的列。如果您尝试使用这些列,则会出现以下错误

{
   "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
   }
}

因此,要获取用户ID,您需要拥有任何可索引的列。