铁轨和Mogli - 让用户成为朋友 id
我正在使用 Rails 3 & mogli 连接到 Facebook。这段代码为我提供了一个用户对象。
client = Mogli::Client.new(session[:at])
user = Mogli::User.find("me", client)
我从文档中看到 mogli 具有适用于所有对象类型的类。 (例如:专辑、活动等)但我不知道如何检索连接。 (例如:朋友)
基本上我需要获取用户朋友及其 ID 的列表。因为 user.friends
只是他们姓名的数组。
有什么想法吗?
I'm using Rails 3 & mogli to connect to facebook. This code get's me a user object.
client = Mogli::Client.new(session[:at])
user = Mogli::User.find("me", client)
I've seen from the documentation that mogli has classes for all the object types. (EG: albums, events, etc) But i don't know how to retrieve connections. (EG: friends)
Basically i need to get a list of the user's friends with their id's. Because user.friends
is only an array of their names.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
犯错。我觉得很愚蠢。
@user.friends
是Mogli::User
对象的数组。@user.friends.inpect
自动调用它们的to_str
。err. i feel stupid.
@user.friends
is an array ofMogli::User
objects.@user.friends.inpect
was callingto_str
on them automatically.