FQL 朋友组
我发现我可以通过 Graph API 访问朋友的群组:
https://graph.facebook.com/11111111/groups
...但是如何通过 FQL 访问它? (在问这些问题之前,我正在广泛搜索文档,如果我问的是一个显而易见的问题,抱歉)。
I see that I can access a friend's groups via the Graph API:
https://graph.facebook.com/11111111/groups
... but how do I access it via FQL? (I am searching the documentation extensively before asking these questions, sorry if I'm asking an obvious one).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想获取 id 为 1111111 的用户组,
您可以编写以下查询:
不要忘记您需要拥有 Friends_groups 权限才能获取此数据,
可以在此处找到这些表的文档:
http://developers.facebook.com/docs/reference/fql/group_member/
http://developers.facebook.com/docs/reference/fql/group/
if you want to get the groups of user with the id 1111111
you can write this query:
don't forget you need to have the friends_groups permission in order to get this data
the documentation for those tables can be found here:
http://developers.facebook.com/docs/reference/fql/group_member/
http://developers.facebook.com/docs/reference/fql/group/
是的。我尝试过它不适用于 FQL 。但您可以使用以下代码通过 graph api 获取它
。配置文件具有以下内容:
Yeah. I tried it did not work with FQL . But you can use the following code to get it via graph api
The config file has the following :