您好,登錄后才能下訂單哦!
小編給大家分享一下Python釘釘報(bào)警設(shè)置的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
1、釘釘報(bào)警設(shè)置
2、釘釘報(bào)警腳本運(yùn)行。
1、釘釘報(bào)警設(shè)置
釘釘,關(guān)于webhook的報(bào)警需求,釘釘報(bào)警也是我們?cè)诠局谐R?jiàn)的報(bào)警系統(tǒng),在這里主要是結(jié)合zabbix二次開(kāi)發(fā)使用,來(lái)達(dá)到完美報(bào)警的使用。
1.1、釘釘報(bào)警第一步,創(chuàng)建群機(jī)器人
接口地址:
https://oapi.dingtalk.com/robot/send?access_token=a25324cafc5b0f2bb239b5e56c71e7f378f570a3d281160dbec9e4f8c4a7e493
文檔地址:
https://open-doc.dingtalk.com/docs/doc.htm?spm=a219a.7629140.0.0.karFPe&treeId=257&articleId=105735&docType=1
1.2 發(fā)送信信息
1.2.1 發(fā)送@所有人的消息
1、發(fā)送普通的消息
import requests import json url = 'https://oapi.dingtalk.com/robot/send?access_token=a25324cafc5b0f2bb239b5e56c71e7f378f570a3d281160dbec9e4f8c4a7e493 ' headers = { "Content-Type": "application/json", "Chartset": "utf-8" } #要發(fā)送的文本是json格式 request_data = { #此消息的類型為固定的text "msgtype": "text", "text": { #消息的內(nèi)容 "content": "大家新年快樂(lè)" }, "at": { #被@人的手機(jī)號(hào) "atMobiles": [], #控制@所有人 "isAtAll": True } } #把json轉(zhuǎn)變?yōu)樽址袷綌?shù)據(jù) send_data = json.dumps(request_data) #這個(gè)是發(fā)送post請(qǐng)求,請(qǐng)求釘釘接口 response = requests.post(url=url,headers=headers,data=send_data) #講求成功后返回的數(shù)據(jù) content = response.content.decode() #打印 # 課程 vip 標(biāo)準(zhǔn) # 替換 視頻 print(content)
第二步進(jìn)行接口開(kāi)發(fā)
2、修改結(jié)構(gòu),具體操作
import sys import json import requests url = 'https://oapi.dingtalk.com/robot/send?access_token=a25324cafc5b0f2bb239b5e56c71e7f378f570a3d281160dbec9e4f8c4a7e493 ' def WriteLogByDing(content): headers = { "Content-Type": "application/json", "Chartset": "utf-8" } request_data = { "msgtype": "text", "text": { "content": content }, "at": { "atMobiles": [], "isAtAll": True } } sendData = json.dumps(request_data) response = requests.post(url = url,headers = headers,data = sendData) content = response.content.decode() print(content) if __name__ == "__main__": content = input('請(qǐng)輸入想要的信息') # content = sys.argv[1] WriteLogByDing(content)
1.2.2 發(fā)送帶有鏈接的文檔
import requests import json url = 'https://oapi.dingtalk.com/robot/send?access_token=a25324cafc5b0f2bb239b5e56c71e7f378f570a3d281160dbec9e4f8c4a7e493 ' headers = { "Content-Type": "application/json", "Chartset": "utf-8" } #要發(fā)送的文本是json格式 request_data = { #發(fā)送鏈接類型的數(shù)據(jù) "msgtype": "link", "link": { #鏈接提示 "text":"群機(jī)器人是釘釘群的高級(jí)擴(kuò)展功能。群機(jī)器人可以將第三方服務(wù)的信息聚合到群聊中,實(shí)現(xiàn)自動(dòng)化的信息同步。例如:通過(guò)聚合GitHub,GitLab等源碼管理服務(wù),實(shí)現(xiàn)源碼更新同步;通過(guò)聚合Trello,JIRA等項(xiàng)目協(xié)調(diào)服務(wù),實(shí)現(xiàn)項(xiàng)目信息同步。不僅如此,群機(jī)器人支持Webhook協(xié)議的自定義接入,支持更多可能性,例如:你可將運(yùn)維報(bào)警提醒通過(guò)自定義機(jī)器人聚合到釘釘群。", #鏈接標(biāo)題 "title": "自定義機(jī)器人協(xié)議", #圖片url地址 "picUrl": "http://p3.so.qhmsg.com/sdr/200_200_/t013d7a21145c708288.jpg", #信息的鏈接跳轉(zhuǎn) "messageUrl": "https://open-doc.dingtalk.com/docs/doc.htm?spm=a219a.7629140.0.0.Rqyvqo&treeId=257&articleId=105735&docType=1" } } #把json轉(zhuǎn)變?yōu)樽址袷綌?shù)據(jù) send_data = json.dumps(request_data) #這個(gè)是發(fā)送post請(qǐng)求,請(qǐng)求釘釘接口 response = requests.post(url=url,headers=headers,data=send_data) #講求成功后返回的數(shù)據(jù) content = response.content.decode() #打印 # 課程 vip 標(biāo)準(zhǔn) # 替換 視頻 print(content)
1.2.3 發(fā)送makedown文檔
import requests import json url = 'https://oapi.dingtalk.com/robot/send?access_token=a25324cafc5b0f2bb239b5e56c71e7f378f570a3d281160dbec9e4f8c4a7e493 ' headers = { "Content-Type": "application/json", "Chartset": "utf-8" } #要發(fā)送的文本是json格式 request_data = { "msgtype": "markdown", "markdown": {"title":"杭州天氣", "text":"#### 杭州天氣 \n > 9度, 西北風(fēng)1級(jí),空氣良89,相對(duì)溫度73%\n\n > ![screenshot](http://i01.lw.aliimg.com/media/lALPBbCc1ZhJGIvNAkzNBLA_1200_588.png)\n > ###### 10點(diǎn)20分發(fā)布 [天氣](http://www.thinkpage.cn/) " }, "at": { "atMobiles": [], "isAtAll":False } } #把json轉(zhuǎn)變?yōu)樽址袷綌?shù)據(jù) send_data = json.dumps(request_data) #這個(gè)是發(fā)送post請(qǐng)求,請(qǐng)求釘釘接口 response = requests.post(url=url,headers=headers,data=send_data) #講求成功后返回的數(shù)據(jù) content = response.content.decode() #打印 print(content)
#要發(fā)送的文本是json格式 發(fā)送整體跳轉(zhuǎn)的actionCard類型 request_data = { "actionCard": { "title": "喬布斯 20 年前想打造一間蘋(píng)果咖啡廳,而它正是 Apple Store 的前身", "text": "![screenshot](@lADOpwk3K80C0M0FoA) \n #### 喬布斯 20 年前想打造的蘋(píng)果咖啡廳 \n\n Apple Store 的設(shè)計(jì)正從原來(lái)滿滿的科技感走向生活化,而其生活化的走向其實(shí)可以追溯到 20 年前蘋(píng)果一個(gè)建立咖啡館的計(jì)劃", "hideAvatar": "0", "btnOrientation": "0", "singleTitle" : "閱讀全文", "singleURL" : "https://www.dingtalk.com/" }, "msgtype": "actionCard" }
{ "feedCard": { "links": [ { "title": "時(shí)代的火車(chē)向前開(kāi)", "messageURL": "https://mp.weixin.qq.com/s?__biz=MzA4NjMwMTA2Ng==&mid=2650316842&idx=1&sn=60da3ea2b29f1dcc43a7c8e4a7c97a16&scene=2&srcid=09189AnRJEdIiWVaKltFzNTw&from=timeline&isappinstalled=0&key=&ascene=2&uin=&devicetype=android-23&version=26031933&nettype=WIFI", "picURL": "https://www.dingtalk.com/" }, { "title": "時(shí)代的火車(chē)向前開(kāi)2", "messageURL": "https://mp.weixin.qq.com/s?__biz=MzA4NjMwMTA2Ng==&mid=2650316842&idx=1&sn=60da3ea2b29f1dcc43a7c8e4a7c97a16&scene=2&srcid=09189AnRJEdIiWVaKltFzNTw&from=timeline&isappinstalled=0&key=&ascene=2&uin=&devicetype=android-23&version=26031933&nettype=WIFI", "picURL": "https://www.dingtalk.com/" } ] }, "msgtype": "feedCard" }
以上是Python釘釘報(bào)警設(shè)置的方法的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。