Omniauth + Facebook 共同好友数

发布于 2024-12-05 03:03:36 字数 90 浏览 0 评论 0原文

有没有比创建“朋友”表并记录每个新用户朋友的 UID 更好/更简单的方法来查找用户之间的共同朋友? (在 Rails 3 上使用 Devise + Omniauth)

Is there a better/easier way to find mutual friends between users than creating a Friends table and logging the UIDs of each new user's friends? (Using Devise + Omniauth on Rails 3)

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

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

发布评论

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

评论(2

掩饰不了的爱 2024-12-12 03:03:36

您不需要记录所有 UID。您使用 Facebook 提供商吗?如果是这样,您可以使用 Koala 或 FBGraph gems 形成 FQL 来查找是否有共同的朋友。

You dont need to log all UIDs. Are you using facebook provider ? If so, you can use Koala or FBGraph gems to form an FQL to find of there are any common friends.

莫相离 2024-12-12 03:03:36

如果您已经拥有可用的 oauth_access_token,则可以使用 koala gem。

@graph = Koala::Facebook::API.new(oauth_access_token)
friends = @graph.get_connections("me", "friends")

If you already have the oauth_access_token available, you can use the koala gem.

@graph = Koala::Facebook::API.new(oauth_access_token)
friends = @graph.get_connections("me", "friends")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文