智能识别 Markdown 格式内容,自动转换为对应平台消息格式
转换后的消息附带查看链接,点击可查看完整的 Markdown 渲染页面
支持企业微信、飞书、钉钉三大主流办公协作平台
将原有的 Webhook 地址进行简单转换即可使用:
| 平台 | 原地址 | 代理地址 |
|---|---|---|
| 企业微信 | https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxx |
https://md2t.misrivers.cn//https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxx |
| 飞书 | https://open.feishu.cn/open-apis/bot/v2/hook/xxx |
https://md2t.misrivers.cn//https://open.feishu.cn/open-apis/bot/v2/hook/xxx |
| 钉钉 | https://oapi.dingtalk.com/robot/send?access_token=xxx |
https://md2t.misrivers.cn//https://oapi.dingtalk.com/robot/send?access_token=xxx |
curl -X POST \
'https://md2t.misrivers.cn//https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxx' \
-H 'Content-Type: application/json' \
-d '{
"msgtype": "text",
"text": {
"content": "# 系统告警\n\n**服务**: API Gateway\n**状态**: ❌ 异常\n**时间**: 2024-01-15 10:30:00"
}
}'
curl -X POST \
'https://md2t.misrivers.cn//https://open.feishu.cn/open-apis/bot/v2/hook/xxx' \
-H 'Content-Type: application/json' \
-d '{
"msg_type": "text",
"content": {
"text": "# 系统告警\n\n**服务**: API Gateway\n**状态**: ❌ 异常\n**时间**: 2024-01-15 10:30:00"
}
}'
curl -X POST \
'https://md2t.misrivers.cn//https://oapi.dingtalk.com/robot/send?access_token=xxx' \
-H 'Content-Type: application/json' \
-d '{
"msgtype": "text",
"text": {
"content": "# 系统告警\n\n**服务**: API Gateway\n**状态**: ❌ 异常\n**时间**: 2024-01-15 10:30:00"
}
}'