0
我想檢索一個用戶朋友education_history,我正在使用考拉寶石和rubyonrails。使用考拉從Facebook檢索朋友education_history Ruby寶石
我有添加的權限用於獲取一個用戶的朋友education_history在我initalizer文件omniauth::scope => 'user_education_history,friends_education_history
到目前爲止,我可以得到用戶的朋友:名和:身份證,但不知道如何讓一個用戶朋友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
任何想法?