Сделать Hubot отправить прямое сообщение в HipChat
Как мне сказать Hubot отправить прямое сообщение с помощью адаптера HipChat? Я пробовал много разных вариантов без успеха.
module.exports = function (robot) {
robot.respond(/hi/i, function (msg) {
msg.send(msg.message.user.room, 'hi'); // outputs to current room
msg.send(msg.message.user.id, 'hi'); // outputs to current room
msg.send(msg.message.user, 'hi'); // outputs to current room
msg.reply('hi'); // @mentions the user in the current room
msg.reply_to('hi') // no reply_to method though I thought I saw this somewhere
});
};
1 ответ
Решение
Мне потребовалось некоторое время, чтобы найти его, но оказалось, что это работает:
module.exports = function (robot) {
robot.respond(/hi/i, function (msg) {
robot.send({
user: msg.message.user.jid
}, 'hi');
});
};