使用Facebook Graph API获取朋友的群组

时间:2013-10-28 09:45:32

标签: facebook-graph-api

我正在使用Facebook应用程序根据我所在的群组列出我的朋友。

比方说,我是名为X的小组成员。我想列出同组X中的朋友。

以下查询似乎无效。 https://graph.facebook.com/me/friends?fields=id,name,first_name,last_name,birthday,groups&access_token=a_Token

注意:我已选择所有必要的权限

1 个答案:

答案 0 :(得分:0)

您可以使用FQL查询执行此操作

 select uid from group_member where gid = xxxx and uid in (select uid2 from friend where uid1 = me() )

其中xxxx是组ID

或者返回所有组,这可能是:

 where gid in (select gid from group_member WHERE uid = me());

这只会让你朋友的uid回归。然后,您可以使用多查询返回有关它们的更多信息

https://developers.facebook.com/docs/technical-guides/fql/