module FbGraph2::Edge::Posts

Public Instance Methods

posts(params = {}) click to toggle source
# File lib/fb_graph2/edge/posts.rb, line 4
def posts(params = {})
  posts = self.edge :posts, params
  posts.collect! do |post|
    Post.new(post[:id], post).authenticate self.access_token
  end
end