Microsoft Bot框架:在连接上发送消息

时间:2017-03-27 13:41:10

标签: node.js botframework

我是Microsoft Bot框架的新手。现在我在模拟器上测试我的代码。我想在你连接后立即发送Hello消息。以下是我的代码。

var restify = require('restify');
var builder = require('botbuilder');

var server = restify.createServer();
server.listen(process.env.port || process.env.PORT || 3978, function () {
   console.log('%s listening to %s', server.name, server.url); 
});

var connector = new builder.ChatConnector({
   appId: "-- APP ID --",
   appPassword: "-- APP PASS --"
});
var bot = new builder.UniversalBot(connector);
server.post('/api/message/',connector.listen());

bot.dialog('/', function (session) {
    session.send("Hello");
    session.beginDialog('/createSubscription');
});

以上代码在用户发起对话时发送Hello消息。我想在用户连接后立即发送此消息。

1 个答案:

答案 0 :(得分:16)

挂钩conversationUpdate事件并检查添加机器人的时间。之后,您可以发布消息或开始新的对话框(如下面的代码我从ContosoFlowers Node.js sample中提取的,尽管有很多others做同样的事情)。

// Send welcome when conversation with bot is started, by initiating the root dialog
bot.on('conversationUpdate', function (message) {
    if (message.membersAdded) {
        message.membersAdded.forEach(function (identity) {
            if (identity.id === message.address.bot.id) {
                bot.beginDialog(message.address, '/');
            }
        });
    }
});