0

私が知っているのは、人のメールアドレス、姓名だけです。FQL を使用してユーザー ID を取得することはできますか? ありがとうございました。

4

1 に答える 1

0

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 を取得するには、インデックス可能な列が必要です。

于 2013-10-17T09:56:25.510 に答える