项目作者: duchungvu

项目描述 :
A Messenger chatbot
高级语言: JavaScript
项目地址: git://github.com/duchungvu/flexbot.git
创建时间: 2019-07-16T17:35:03Z
项目社区:https://github.com/duchungvu/flexbot

开源协议:MIT License

下载


FlexBot

Flexbot is a Messenger chatbot that help users set reminders and daily subscriptions through basic messages. This project is developed to assist me and my friends in daily tasks, as Messenger is out main communication platform. Through this project, I learned more about Node.js and webhook

Supported features

  • Daily reminders
  • Daily news subscriptions (WIP)

Technologies used

Setup

  1. Install Node.js on your machine

  2. Clone this repository to your local machine

    1. $ git clone https://github.com/duchungvu/FlexBot.git
    2. $ cd flexbot
  3. Install dependencies

    1. $ npm install
  4. Create environment file

    1. $ touch .env

    and type in

    1. PAGE_ID=
    2. APP_ID=
    3. PAGE_ACCESS_TOKEN=
    4. APP_SECRET=
    5. VERIFY_TOKEN=
    6. APP_URL=
    7. PORT=

    Learn more

Run locally

  1. Run ngrok

    1. $ ngrok http 3000

    You can set the port to anything, I set 3000 here. Copy the link on the line Forwarding that looks like https://something.ngrok.io and paste into APP_URL

  2. In other terminal, run the the Node.js application

    1. $ node app.js
  3. Run this link http://localhost:3000/profile?mode=all&verify_token=<VERIFY_TOKEN> with the VERIFY_TOKEN you set in the .env file to subscribe to Messenger events. Now you are all set, go to Messenger and send a message.

Run on heroku

WIP

Acknowledgements