Slack webhook不发送个人信息



我正在尝试使用webhook向特定用户发送个人消息。我创建了webhook,所以我得到了个人信息。但是我不能发送私人信息给别人私人聊天。我不想用bot。

slack.setWebhook("Webhook");
slack.webhook({
channel: "D01KMUZ4E4S",
username: "webhookbot",
text: "This is posted to #general and comes from a bot named webhookbot."
}, function(err, response) {
console.log(response);
});

Slack Webhook url绑定到特定的频道,单个消息或组消息。您需要在您的工作区中为您想要发送消息的每个用户创建一个新的webhook。

最新更新