50.7. 制作者
现在,您可以使用令牌来发送消息,而不是 WebhookUrl。
from("direct:test") .to("slack:#random?token=RAW(<YOUR_TOKEN>)");
现在,您可以使用 Slack API 模型来创建块。您可以在 https://api.slack.com/block-kit 中了解更多有关它的信息。
public void testSlackAPIModelMessage() { Message message = new Message(); message.setBlocks(Collections.singletonList(SectionBlock .builder() .text(MarkdownTextObject .builder() .text("*Hello from Camel!*") .build()) .build())); template.sendBody(test, message); }