4
5
6
7
8
9
10
11
|
# File 'lib/fb_graph/connections/friends.rb', line 4
def friends(options = {})
users = self.connection :friends, options
users.map! do |user|
User.new user[:id], user.merge(
:access_token => options[:access_token] || self.access_token
)
end
end
|