Azure bot框架:显示欢迎消息

时间:2017-11-09 03:55:43

标签: node.js azure bots botframework azure-bot-service

我正在尝试创建一个机器人,每当我使用NodeJS刷新或启动机器人(注意:最初没有输入任何内容)时,它会给我一条欢迎消息。

我使用了以下代码

var bot = new builder.UniversalBot(connector, [
    function (session) {
        builder.Prompts.text(session, 'Hi! What is your name?');
    }
]);

但这并没有帮助我,只有在我输入内容时才会给我一条消息

enter image description here

1 个答案:

答案 0 :(得分:2)

您似乎需要使用conversationUpdate回调。请尝试从skype example

派生的以下代码段
bot.on('conversationUpdate', function(message) {
    // Send a hello message when bot is added
    if (message.membersAdded) {
        message.membersAdded.forEach(function(identity) {
            if (identity.id === message.address.bot.id) {
                var reply = new builder.Message().address(message.address).text("Hi! What is your name?");
                bot.send(reply);
            }
        });
    }
});