我想知道是否可以发布带有附件的消息,就像我可以使用Slack的操作代码或文本片段作为我的机器人的回复添加的消息一样。我应该使用 bot.reply 还是其他方法?
答案 0 :(得分:1)
您可以使用Botkit界面通过files.upload API上传,就像这样:
slackBot.api.files.upload({
file: fs.createReadStream('./codeForReview.js'),
channels: '#general',
initial_comment: 'Can you guys have a look at this please?',
title: 'Updated code',
});