Module: FbGraph2::Edge::Tagged

Included in:
Page, User
Defined in:
lib/fb_graph2/edge/tagged.rb

Instance Method Summary collapse

Instance Method Details

#tagged(params = {}) ⇒ Object



4
5
6
7
8
9
# File 'lib/fb_graph2/edge/tagged.rb', line 4

def tagged(params = {})
  posts = self.edge :tagged, params
  posts.collect! do |post|
    Post.new(post[:id], post).authenticate self.access_token
  end
end