Send data from bot to client in DirectLine WebChat - NodeJS Botframework
问题 I added bot to an HTML page on our intranet using the following code: <link href="https://cdn.botframework.com/botframework-webchat/latest/botchat.css" rel="stylesheet" /> <style> #bot{ height: 600px; } </style> <div> <div id="bot" /> </div> <script src="https://cdn.botframework.com/botframework-webchat/latest/botchat.js"></script> <script> var user = { id: 'user-id', name: 'user name' }; var botConnection = new BotChat.DirectLine({ token: '[token]', user: user }); BotChat.App({ user: user,