1

我正在搜索并没有解决这个问题......我正在尝试通过 FQL 选择与 2 个用户进行对话的收件人,例如:

SELECT recipients, folder_id FROM thread WHERE folder_id = 0  and ({MeId} in recipients) and ({FriendId} in recipients) and recipients.Length = 2

SELECT recipients, folder_id FROM thread WHERE folder_id = 0  and ({MeId} in recipients) and ({FriendId} in recipients) and recipients.Count = 2

但是即使有超过 2 人,我也总是会回复与用户的所有对话线程

也许计数或长度不正确,简单的错误?没有错误,但结果不是我怀疑的......希望有人能帮忙

4

1 回答 1

1

FQL 没有本机countlength方法。唯一的方法是返回所有结果并过滤掉脚本中不需要的结果。

于 2013-01-15T12:16:30.570 回答