Facebook Graph API - 使用应用程序的朋友

发布于 2024-09-24 07:41:49 字数 189 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

季末如歌 2024-10-01 07:41:49

您应该能够使用 FQL 执行此操作:

select uid, name, is_app_user from user where uid in (select uid2 from friend where uid1=me()) and is_app_user=1

You should be able to do this with FQL:

select uid, name, is_app_user from user where uid in (select uid2 from friend where uid1=me()) and is_app_user=1
旧话新听 2024-10-01 07:41:49

您始终可以使用应用程序令牌向 url 发出请求:

https://graph.facebook.com/user_id/friends?fields=id,name,installed

然后只需按 已安装 参数过滤用户
对于用户朋友,您可以执行相同的操作,但使用客户端令牌。

You can always make request with App token to url:

https://graph.facebook.com/user_id/friends?fields=id,name,installed

And then just filter user by installed param
For user friends you can do the same but with client token.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文