Module: FbGraph::Connections::Interests

Included in:
User
Defined in:
lib/fb_graph/connections/interests.rb

Instance Method Summary collapse

Instance Method Details

#interests(options = {}) ⇒ Object



4
5
6
7
8
9
# File 'lib/fb_graph/connections/interests.rb', line 4

def interests(options = {})
  interests = FbGraph::Collection.new(get(options.merge(:connection => 'interests')))
  interests.map! do |interest|
    Page.new(interest.delete(:id), interest)
  end
end