module FbGraph2::Edge::Locations

Public Instance Methods

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