Slack Webhook 是否可以发送带有自定义名称的消息?

SlackWebhook Is it possibible to send a msg with a custom name?

使用自定义名称通过 Slack Webhook 发送消息?

我想通过 API 在 Slack 中发送消息。 我正在为 Java 使用 GPedro Slack Webhook。 是否可以使用自定义名称发送?

您可以像这样使用自定义名称发送简单消息

SlackApi api = new SlackApi("https://hooks.slack.com/services/id_1/id_2/token");
api.call(new SlackMessage("#general", "Custom Name", "my message"));

欲了解更多信息,请搜索:
https://github.com/gpedro/slack-webhook#basic-examples