Module: FbGraph::Connections::Posts

Included in:
Page, User
Defined in:
lib/fb_graph/connections/posts.rb

Instance Method Summary collapse

Instance Method Details

#posts(options = {}) ⇒ Object



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

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