我想检索用户朋友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
有任何想法吗?