Facebook Graph API - 使用应用程序的朋友
Facebook.php 库中是否有一个函数可以获取使用某个应用程序的用户的好友。类似于:
$friends = $facebook->api('me/friends?access_token=' . $access_token);
但它不是列出所有朋友,而是仅列出使用同一应用程序的朋友。
Is there a function in the Facebook.php library for getting friends of the user using a certain application. Something like:
$friends = $facebook->api('me/friends?access_token=' . $access_token);
But instead of listing all friends, it just lists friends using the same application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够使用 FQL 执行此操作:
You should be able to do this with FQL:
您始终可以使用应用程序令牌向 url 发出请求:
然后只需按 已安装 参数过滤用户
对于用户朋友,您可以执行相同的操作,但使用客户端令牌。
You can always make request with App token to url:
And then just filter user by installed param
For user friends you can do the same but with client token.