module FbGraph2::Edge::Accounts

Public Instance Methods

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