ユーザー フレンドの 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
何か案は?