Last active
December 16, 2016 12:09
-
-
Save progapandist/bb23603694b57287ccf8d7a1b772adeb to your computer and use it in GitHub Desktop.
This file contains 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 | |
# NOTE: ENV variables should be set directly in terminal for testing on localhost | |
# Subcribe bot to your page | |
Facebook::Messenger::Subscriptions.subscribe(access_token: ENV["ACCESS_TOKEN"]) | |
Bot.on :message do |message| | |
message.reply(text: 'Hello!') | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment