赞
踩
https://www.jianshu.com/p/3a376a0c0b50
#!/usr/bin/env python3 # pip3 install requests import sys import requests keyword = "Zabbix" #alarmSubject = sys.argv[1] #alarmMsg = sys.argv[2] alarmMsg = sys.argv[1] content = { "msgtype": "text", "text": { "content": f"""{keyword}{alarmMsg} """ }, "at": { # @ 所有人 "isAtAll": True } } 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)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。