我如何获得“朋友”列表?谁添加了我的 Facebook 应用程序?

发布于 2024-09-07 14:25:11 字数 209 浏览 2 评论 0原文

我确实在努力解决一些应该很简单的事情:向我的 Facebook 应用程序的用户显示他们也使用该应用程序的朋友列表。 API 中是否没有内置任何内容来允许此类常见请求?

我唯一能想到要做的就是获取用户朋友的列表,然后从我的数据库中获取该列表中的所有用户,然后然后获取每个 Facebook ID 的信息。但这似乎是一种极其迂回的做事方式......

I'm really struggling with something that should be a simple matter: Showing a user of my Facebook app a list of their friends also using the app. Is there nothing built into the APIs to allow such a common request?

The only thing I can think of to do is to get the list of the user's friends, and then get all the users from my database who are in that list, and then fetch information for each of those facebook ids. But that seems an extremely roundabout way of doing things...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

对你的占有欲 2024-09-14 14:25:11

我发现执行此操作的唯一方法是使用 FQL 和以前记录但现在未记录的字段:

SELECT uid,name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=<user's uid>) AND is_app_user=1 ORDER BY name

未记录的字段是 user.is_app_user,它列于 旧文档 wiki 但不在 闪亮的新文档。不知道这是否意味着它将来会被删除,但似乎没有任何其他方法可以使用新的 Graph API 获取这些数据。

如果您仍在使用旧的 REST API,您还可以调用 friends.getAppUsers 方法。

The only way I've found to do this is to use FQL and a previously documented, but now undocumented field:

SELECT uid,name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=<user's uid>) AND is_app_user=1 ORDER BY name

The undocumented field is the user.is_app_user, which is listed in the old documentation wiki but not in the shiny new docs. No idea if this means it'll be removed in the future, but there doesn't seem to be any other way to get this data with the new Graph API.

Just in-case you're still using the old REST API, you can also call the friends.getAppUsers method.

凉城凉梦凉人心 2024-09-14 14:25:11

实际上,您可以使用 Facebook 的旧 REST API 来执行此操作,方法是将 GET 请求发送到: https://api .facebook.com/method/friends.getAppUsers

如果您需要返回 JSON 数据,请添加参数 format=json

您需要一个访问令牌才能执行此操作。请参阅此处的文档:
http://developers.facebook.com/docs/reference/rest/friends。获取应用程序用户/

You can actually use Facebook's old REST API to do this by sending a GET request to: https://api.facebook.com/method/friends.getAppUsers

If you need JSON data back, then add the parameter format=json

You need an access token to do this. See the documentation here:
http://developers.facebook.com/docs/reference/rest/friends.getAppUsers/

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