Method: FbGraph::Connections::Notes#note!

Defined in:
lib/fb_graph/connections/notes.rb

#note!(options = {}) ⇒ Object



13
14
15
16
17
18
# File 'lib/fb_graph/connections/notes.rb', line 13

def note!(options = {})
  note = post options.merge(:connection => :notes)
  Note.new note[:id], options.merge(note).merge(
    :access_token => options[:access_token] || self.access_token
  )
end