Created
March 9, 2017 16:47
-
-
Save makefunstuff/e0885c50d955e399ff76d3bb251b17a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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