您好,登錄后才能下訂單哦!
本篇內容主要講解“怎么使用Python實現企業微信通知功能”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“怎么使用Python實現企業微信通知功能”吧!
常見的通知方式有:郵件,電話,短信,微信。短信和電話:通常是收費的,較少使用;郵件:適合帶文件類型的通知,較正
式,存檔使用;微信:適合告警類型通知,較方便。這里說的微信,是企業微信。
本文目的:通過企業微信應用給企業成員發消息。
登陸網頁版企業微信,點擊 應用管理 → 應用 → 創建應用
上傳應用的 logo,輸入應用名稱(債券打新),再選擇可見范圍,成功創建一個告警應用
使用 Python 發送告警請求,其實就只使用到兩個接口:
獲取 Token :
https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={corpid}&corpsecret={secret}
發送請求:
https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token={token}
可以看到,最重要的是 corpid 和 secret:
corpid:唯一標識你的企業
secret:應用級的密鑰,有了它程序才知道你要發送該企業的哪個應用
corpid 可以通過 我的企業 → 企業信息 → 企業id 獲取
secret 可以通過 點擊 新創建的應用(債券打新) → 查看 secret → 發送 來獲取
最后將 corpid 和 secret 填入下面的常量中。
import json import time import requests ''' 本文件主要實現通過企業微信應用給企業成員發消息 CORP_ID = "xxxx" SECRET = "xxxx" class WeChatPub: s = requests.session() def __init__(self): self.token = self.get_token() def get_token(self): url = f"https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={CORP_ID}&corpsecret={SECRET}" rep = self.s.get(url) if rep.status_code != 200: print("request failed.") return return json.loads(rep.content)['access_token'] def send_msg(self, content): url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=" + self.token header = { "Content-Type": "application/json" } form_data = { "touser": "FengXianMei",#接收人 "toparty": "1",#接收部門 "totag": " TagID1 | TagID2 ",#通訊錄標簽id "msgtype": "textcard", "agentid": 1000002,#應用ID "textcard": { "title": "債券打新提醒", "description": content, "url": "URL", "btntxt": "更多" }, "safe": 0 rep = self.s.post(url, data=json.dumps(form_data).encode('utf-8'), headers=header) return json.loads(rep.content) if __name__ == "__main__": wechat = WeChatPub() timenow = time.strftime("%Y-%m-%d %H:%M:%S",time.localtime()) wechat.send_msg(f"<div class=\"gray\">{timenow}</div> <div class=\"normal\">注意!</div><div class=\"highlight\">今日有新債,堅持打新!</div>") print('消息已發送!')
到此,相信大家對“怎么使用Python實現企業微信通知功能”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。