Module: FbGraph::Connections::Notifications

Included in:
User
Defined in:
lib/fb_graph/connections/notifications.rb

Instance Method Summary collapse

Instance Method Details

#notification!(options = {}) ⇒ Object



13
14
15
# File 'lib/fb_graph/connections/notifications.rb', line 13

def notification!(options = {})
  post options.merge(:connection => :notifications)
end

#notifications(options = {}) ⇒ Object



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

def notifications(options = {})
  notifications = self.connection :notifications, options
  notifications.map! do |notification|
    Notification.new notification[:id], notification.merge(
      :access_token => options[:access_token] || self.access_token
    )
  end
end