Answer the question
In order to leave comments, you need to log in
How to fix error in console (node js)?
I use "Botact" library and "node js" framework to create a bot.
There is the following code
const express = require('express');
const bodyParser = require('body-parser');
const {Botact} = require('botact');
const server = express();
const bot = new Botact({
token: 'my_token',
confirmation: ' my_token'
})
bot.on(function (ctx) {
ctx.reply(ctx.body);
})
server.use(bodyParser.json());
server.post('/',bot.listen);
server.listen(80);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question