gpt4 book ai didi

node.js - 从 Slack API 获取用户名

转载 作者:太空宇宙 更新时间:2023-11-03 22:46:21 30 4
gpt4 key购买 nike

我正在构建一个 slackbot,它需要监听环境关键字,但会检查以确保特定用户编写了该关键字。我现在正在尝试使用以下命令测试该命令:

controller.hears(['texas'], 'ambient', function(bot, message) {
username = users.info.name;
bot.reply(message, username);
});

最终,我想运行条件逻辑以确保用户名与我希望机器人响应的用户匹配。但这不起作用;我使用API​​错误吗?如何检索用户名,以及如何检查以确保它是正确的用户?

最佳答案

你会做这样的事情:

controller.hears(['texas'], 'ambient', function(bot, message) {
bot.api.users.info({user: message.user}, function(err, info){
//check if it's the right user using info.user.name or info.user.id
bot.reply(message, info.user.name)
})
})

关于node.js - 从 Slack API 获取用户名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37625760/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com