我只知道一个人的电子邮件、名字和姓氏。是否可以通过 FQL 获取用户 ID?谢谢你。
问问题
105 次
1 回答
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,您需要拥有任何可索引的列。
于 2013-10-17T09:56:25.510 回答