发送钉钉消息
- 在钉钉自定义机器人,添加关键字 获取token
pip3 install requests 安装模块
import requests
content = {
"msgtype": "text",
"text": {
"content": "lwq 出发!" # 这里必须包含之前定义关键字
},
"at": {
# 发送给群里的所有人
"isAtAll": True
#单独 @ 某个人,使用绑定的手机号,
# 多个人用户英文逗号隔开
# "131xxxxxx811",
# "137xxxxxxxxx"
}
}
headers = {"Content-Type": "application/json;charset=utf-8"}
url = "https://oapi.dingtalk.com/robot/send?access_token=你自己的 token"
r = requests.post(url=url,headers=headers,json=content)
print(r.content.decode())