This is a nlp smart bot using botkit and express server. This app enables webhook as a channel to connect to botkit.
To start the botkit server, clone this repo and do npm install
followed by npm start
.
Now you will have botkit server running at http://localhost:3005/botkit/receive, go ahead and start talking.
For talking to the botkit, you would need to make POST requests to botkit server. The sample request would look something like this,
{ type : "text", text : "I said hello fella", user : "user-unique-secret-id" channel : "webhook" }