我只知道一个人的电子邮箱,名字和姓氏。是否可以通过FQL获取用户ID?谢谢。
发布于 2013-10-17 17:56:26
您在facebook的用户表中拥有的列是不可索引的。为了使用where子句进行提取,u必须有一个可索引的列。如果您尝试使用这些列,将会得到以下错误
{
"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,您需要具有任何可索引的列。
https://stackoverflow.com/questions/19372315
复制相似问题