你真正的凯旋,在于你不断地毁坏你的凯旋门。——阿多尼斯《我的孤独是一座花园》

按照文档申请webhook

https://open.feishu.cn/document/ukTMukTMukTM/ucTM5YjL3ETO24yNxkjN

然后编写代码:

引入的hutool

代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import cn.hutool.core.map.MapBuilder;
import cn.hutool.core.map.MapUtil;
import cn.hutool.http.HttpResponse;
import cn.hutool.http.HttpUtil;
import cn.hutool.json.JSONUtil;
import cn.hutool.log.Log;
import cn.hutool.log.LogFactory;

/**
* 机器人工具类
*
* @author <achao1441470436@gmail.com>
* @since 2022/4/6 22:04
*/
public class RobotUtils {
private static final Log log = LogFactory.get();

public static void main(String[] args) {
sendMsgToFeiShu("测试飞书机器人🤖");
}

/**
* 测试飞书机器人
*
* @param content 发送内容
*/
public static void sendMsgToFeiShu(String content) {
HttpResponse response = HttpUtil.createPost("https://open.feishu.cn/open-apis/bot/v2/hook/xxxxxxxxxxxxxxxxx").header("Content-Type", "application/json").body(JSONUtil.toJsonStr(MapBuilder.create().put("msg_type", "text").put("content", MapUtil.of("text", content)).build())).execute();
log.debug(response.body());
}

}

注意这里把webhook改为你自己申请的即可