我正在使用 Facebook 的 FQL 进行查询:
Fql.execute({
"query1" => "select object_id from photo_tag where subject=me()",
"query2" => "select object_id, subject from photo_tag where object_id in (select object_id from #query1)",
options_dict_with_my_access_token)
query1 获取所有将我标记为主题的照片 query2 转到同一张表并尝试加载所有主题的照片
但是查询 2 无法为许多作为查询 1 结果的照片加载行,这是不可能的,因为我知道至少我是 1 个这样的结果。
这是如何运作的?