Shell中通过机器人发送钉钉群消息
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell中通过机器人发送钉钉群消息相关的知识,希望对你有一定的参考价值。
场景:在平时的工作中,经常需要执行一些定时任务,并且当定时任务执行失败后需要告警出来到钉钉群,使用[钉钉机器人]可以简单快速的帮我们完成这件事情。
简单使用
curl 'https://oapi.dingtalk.com/robot/send?access_token=9e2549f6a0bb28767bdexxxxxxxxxxxxxxxxxx81975c981005abbd' -H 'Content-Type: application/json' -d ' {"msgtype": "text", "text": { "content": "我就是我, 是不一样的烟火" } }'
效果图:
发送文本内容并@指定的人
curl 'https://oapi.dingtalk.com/robot/send?access_token=9e2549f6a0xxxxxxxxxxxxxxxxxx447981975c981005abbd' -H 'Content-Type: application/json' -d '{"msgtype":"text","text":{"content":"我就是我, 是不一样的烟火"},"at":{"atMobiles":["176xxxx1234"],"isAtAll":false}}'
效果图:
以上是关于Shell中通过机器人发送钉钉群消息的主要内容,如果未能解决你的问题,请参考以下文章