如何使用 SlackClient 在 slack bot 中发送附件 node.js
How to send attachment in slack bot using SlackClient for node.js
我想发送不同颜色的图片、文字和要点。我只能使用
slackClient.sendMessage(botSays(parsedResp, witError, message) , message.channel);
但是我不知道怎么发附件。任何帮助将不胜感激
谢谢
我找到了答案。附件可以通过 IncomingWebhook 或 Web Api 发送给用户。还有许多 html 文本格式和图像附件也是可能的。 Slack Attachment api
我想发送不同颜色的图片、文字和要点。我只能使用
slackClient.sendMessage(botSays(parsedResp, witError, message) , message.channel);
但是我不知道怎么发附件。任何帮助将不胜感激
谢谢
我找到了答案。附件可以通过 IncomingWebhook 或 Web Api 发送给用户。还有许多 html 文本格式和图像附件也是可能的。 Slack Attachment api