Skip to content

Instantly share code, notes, and snippets.

@sbose78
Created October 17, 2016 06:31
Show Gist options
  • Save sbose78/bb5da79ea6332b539c3d9c88c6a1e3ff to your computer and use it in GitHub Desktop.
Save sbose78/bb5da79ea6332b539c3d9c88c6a1e3ff to your computer and use it in GitHub Desktop.
var Bottr = require('bottr')
var BottrApp = require('bottr-app')
var bot = new Bottr.Bot()
bot.use(new BottrApp())
bot.use(new Bottr.FacebookMessengerClient())
bot.on('message_received', function(message, session) {
session.send('Hello World')
})
bot.listen()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment