moustafasamir
12/10/2012 - 2:05 PM

get facebook friends with picture using Koala

get facebook friends with picture using Koala

 def get_facebook_friends(access_token)
    @graph = Koala::Facebook::API.new(access_token)
    friends = @graph.get_connections("me", "friends?fields=id,name,picture.type(large)")
    return friends
  end