码迷,mamicode.com
首页 > 编程语言 > 详细

python实现钉钉报警

时间:2020-05-19 00:21:35      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:char   文本格式   tps   atm   set   app   指定   bho   cat   

import requests import json def dingmessage(): webhook = "https://oapi.dingtalk.com/robot/send?access_token=efe407f2a73..." header = { "Content-Type": "application/json", "Charset": "UTF-8" } # text文本格式 # message = { # "msgtype": "text", # "at": { # "atMobiles": ["187xxx"], # "isAtAll": False # }, # "text": { # "content": "test" #发送的内容 # } # } # markdown文本格式 message = { "msgtype": "markdown", "markdown": { "title": "短信请求", "text": "test @187xxxx" }, "at": { # @指定报警人 "atMobiles": ["187xxxx"], "isAtAll": False } } message_json = json.dumps(message) print(message_json) info = requests.post(url=webhook,data=message_json,headers=header) print(info.text) if __name__=="__main__": dingmessage()

python实现钉钉报警

标签:char   文本格式   tps   atm   set   app   指定   bho   cat   

原文地址:https://blog.51cto.com/14163901/2496273

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!