Omniauth + Facebook 共同好友数
有没有比创建“朋友”表并记录每个新用户朋友的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要记录所有 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.
如果您已经拥有可用的
oauth_access_token
,则可以使用 koala gem。If you already have the
oauth_access_token
available, you can use the koala gem.