├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── bot.js ├── config.js ├── connectors └── facebook.js ├── demo ├── Demo.gif ├── Demo1.jpg ├── Demo10.jpg ├── Demo11.gif ├── Demo12.jpg ├── Demo13.jpg ├── Demo14.jpg ├── Demo2.jpg ├── Demo3.jpg ├── Demo4.jpg ├── Demo5.jpg ├── Demo6.jpg ├── Demo7.jpg ├── Demo8.gif └── Demo9.jpg ├── index.js ├── package.json └── services └── wit.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | *.txt 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/bot.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/config.js -------------------------------------------------------------------------------- /connectors/facebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/connectors/facebook.js -------------------------------------------------------------------------------- /demo/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo.gif -------------------------------------------------------------------------------- /demo/Demo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo1.jpg -------------------------------------------------------------------------------- /demo/Demo10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo10.jpg -------------------------------------------------------------------------------- /demo/Demo11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo11.gif -------------------------------------------------------------------------------- /demo/Demo12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo12.jpg -------------------------------------------------------------------------------- /demo/Demo13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo13.jpg -------------------------------------------------------------------------------- /demo/Demo14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo14.jpg -------------------------------------------------------------------------------- /demo/Demo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo2.jpg -------------------------------------------------------------------------------- /demo/Demo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo3.jpg -------------------------------------------------------------------------------- /demo/Demo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo4.jpg -------------------------------------------------------------------------------- /demo/Demo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo5.jpg -------------------------------------------------------------------------------- /demo/Demo6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo6.jpg -------------------------------------------------------------------------------- /demo/Demo7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo7.jpg -------------------------------------------------------------------------------- /demo/Demo8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo8.gif -------------------------------------------------------------------------------- /demo/Demo9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/demo/Demo9.jpg -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /services/wit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfangs/messenger-bot-witai-tutorial/HEAD/services/wit.js --------------------------------------------------------------------------------