module FbGraph2::Edge::Tagged

Public Instance Methods

tagged(params = {}) click to toggle source
# 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