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