Module: FbGraph::Connections::Payments

Included in:
Application, User
Defined in:
lib/fb_graph/connections/payments.rb

Instance Method Summary collapse

Instance Method Details

#payments(options = {}) ⇒ Object



4
5
6
7
8
9
10
11
# File 'lib/fb_graph/connections/payments.rb', line 4

def payments(options = {})
  options[:access_token] ||= self.access_token
  orders = self.connection(:payments, options)
  orders.map! do |order|
    orders[:access_token] ||= options[:access_token] || self.access_token
    Order.new(order[:id], order)
  end
end