您好,登錄后才能下訂單哦!
這篇文章主要介紹“怎么用Python發送通知到微信”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“怎么用Python發送通知到微信”文章能幫助大家解決問題。
登陸網頁版企業微信 ,點擊 應用管理 → 應用 → 創建應用
上傳應用的 logo,輸入應用名稱(債券打新),再選擇可見范圍,成功創建一個告警應用
使用 Python 發送告警請求,其實就只使用到兩個接口:
獲取 Token :https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={corpid}&corpsecret={secret}
發送請求:http://www.neiyidaogou.com/link/8123b781e08f4d9e89ea88f53e6431a9
可以看到,最重要的是 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) if rep.status_code != 200: print("request failed.") return 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"{timenow} 注意!今日有新債,堅持打新!") print('消息已發送!')
關于“怎么用Python發送通知到微信”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。