Skip to content

Instantly share code, notes, and snippets.

@makefunstuff
Created March 9, 2017 16:47
Show Gist options
  • Save makefunstuff/e0885c50d955e399ff76d3bb251b17a9 to your computer and use it in GitHub Desktop.
Save makefunstuff/e0885c50d955e399ff76d3bb251b17a9 to your computer and use it in GitHub Desktop.
require 'facebook/messenger'
include Facebook::Messenger
Bot.on :message do |message|
message.id # => 'mid.1457764197618:41d102a3e1ae206a38'
message.sender # => { 'id' => '1008372609250235' }
message.seq # => 73
message.sent_at # => 2016-04-22 21:30:36 +0200
message.text # => 'Hello, bot!'
message.attachments # => [ { 'type' => 'image', 'payload' => { 'url' => 'https://www.example.com/1.jpg' } } ]
message.reply(text: 'Hello, human!')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment