Chatbot working fine locally but don't work when connecting to Bot Framework Emulator

Viewed 24
const builder = require('botbuilder');
var inMemoryStorage = new builder.MemoryBotStorage();

var bot = new builder.UniversalBot(connector).set('storage', inMemoryStorage);

I used the above line of codes to integrate my code to Bot framework but it shoes error as shown below Error: enter image description here Need to connect successfully with Bot framework Emulator as there is no response from the emulator enter image description here

Need same output in the Bot Framework emulator enter image description here

0 Answers
Related