Я новичок в JS / Node js. У меня проблема с фреймворком ботов, пожалуйста, помогите мне с этим.
TypeError: Невозможно выполнить «установку» на прокси-сервере, который был отозван в D: \ Bot \ Archi-bot-src \ node_modules \ botbuilder- core \ lib \ turnContext. js: 360: 40 в processTicksAndRejection (internal / process / task_queues. js: 97: 5) в asyn c UtilityService.communicationBuilder (D: \ Bot \ Archi-bot-src \ ресурс \ js \ starup. js: 18: 7)
Введите следующий код:
const {
ActivityHandler,
MessageFactory,
BotAdapter,
ActivityTypes,
} = require("botbuilder");
const fs = require("fs");
const { nextTick } = require("process");
module.exports = class UtilityService {
constructor() {
console.log("Class created");
}
dummy() {}
async communicationBuilder(str, context) {
try {
await context.sendActivity(MessageFactory.text('Hello!','Hellos' ));
await next();
} catch (error) {
console.log(error);
}
}
};