使用 fb_graph 拉取好友 uid
有谁知道如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
friend.identifier
而不是friend.uid
。Use
friend.identifier
instead offriend.uid
.