【发布时间】:2012-07-09 15:00:06
【问题描述】:
我想检索用户朋友education_history,我正在使用koala gem 和rubyonrails。
我在omniauth的初始化文件中添加了获取用户朋友education_history的权限::scope => 'user_education_history,friends_education_history
到目前为止,我可以获取用户朋友 :name 和 :id,但不知道如何获取用户朋友 education_history。
def add_friends
facebook.get_connections("me", "friends").each do |hash|
self.friends.where(:name => hash['name'], :uid => hash['id']).first_or_create
end
end
有什么想法吗?
【问题讨论】:
标签: ruby-on-rails ruby ruby-on-rails-3 koala fb-graph