使用 fb_graph 拉取好友 uid

发布于 2024-11-24 21:14:29 字数 424 浏览 0 评论 0原文

有谁知道如何使用 fb_graph 提取 facebook 好友 uid 列表?我当前的代码如下,但它不起作用。我正在使用 devise 和omniauth。

在我的用户控制器中,

def profile
  profile ||= FbGraph::User.me(self.authentications.find_by_provider('facebook').token).fetch
end

我认为

<% current_user.profile.friends.each do |friend| %>
<%= friend.uid %>
<% end %>

我已经寻找解决方案好几天了,但仍然徒劳,如果有人能告诉我线索,我将不胜感激。

does anyone know how to pull a list of facebook friends uid using fb_graph? My current code is below but it does not work. I'm using devise and omniauth.

In my user controller

def profile
  profile ||= FbGraph::User.me(self.authentications.find_by_provider('facebook').token).fetch
end

In my view

<% current_user.profile.friends.each do |friend| %>
<%= friend.uid %>
<% end %>

I've been looking for solution for days but still in vain and will appreciate if anyone could tell me the clue.

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

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

发布评论

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

评论(1

捎一片雪花 2024-12-01 21:14:29

使用 friend.identifier 而不是 friend.uid

Use friend.identifier instead of friend.uid.

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