Получите историю образования от Facebook, используя коала Ruby gem
Я хотел бы найти друга-друга Education_history, я использую камень Коала и rubyonrails.
Я добавил разрешение на получение друга-друга education_history в файле инициализации для omniauth: :scope => 'user_education_history,friends_education_history
До сих пор я могу получить пользователя friend: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
Есть идеи?
1 ответ
Решение
Я решил свою проблему с помощью ключа поля, предоставленного Koala, он более эффективен и работает быстро:
def add_friends
facebook.get_connections("me", "friends", :fields => "name, id, education").each do |hash|
self.friends.where(:name => hash['name'], :uid => hash['id'], :highschool_name => hash['education'][0]['school']['name'], :graduateschool_name => hash['education'][1]['school']['name']).first_or_create
end
end