SlackWebhook发送带有自定义名称的消息是否可行?

时间:2015-11-03 10:46:10

标签: webhooks slack-api slack

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

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

1 个答案:

答案 0 :(得分:1)

您可以使用自定义名称发送简单的邮件,如下所示

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