#一、首先在钉钉群里添加一个自定义机器人
保存机器人的 Webhook
地址
#二、python 示例代码
####安装requests模块
pip3 install requests
import requests
content = {
"msgtype": "text",
"text": {
"content": "出发!" # 发送的信息
},
"at": { # 发送给谁
# "atMobiles": [
# "131xxxxxx81" # 单独 @ 某个人 这个人的手机号码
# ],
# "isAtAll": False
"isAtAll": True # @ 所有人
}
}
headers = {"Content-Type": "application/json;charset=utf-8"} # 官方要求必须添加
url = "https://oapi.dingtalk.com/robot/send?access_token=xxx" # 机器人的 Webhook 地址
r = requests.post(url=url,headers=headers,json=content)
print(r.json())
#####发送给群里多个人
在此处添加手机号即可
"at": {
"atMobiles": [
"131xxxxxx81",
"131xxxxxx81",
"131xxxxxx81"
],
"isAtAll": Fals
}
#三、shell 示例代码
msg='大家好' # 发送的信息
url="https://oapi.dingtalk.com/robot/send?access_token=xxx" # 群机器人的 Webhook 地址
curl $url \
-H 'Content-Type: application/json' \
-d '{"msgtype": "text",
"text": {
"content": "'${msg}'"
}
}'