Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use Python to realize WeCom Notification function

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly explains "how to use Python to achieve WeCom notification function", interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let the editor take you to learn "how to use Python to achieve WeCom notification function"!

Preface

Common notification methods are: e-mail, phone, SMS, Wechat. Text messages and phone calls: usually charged, less used; email: suitable for notifications with file types, correct

Type, archival use; Wechat: suitable for alarm type notification, more convenient. The Wechat we are talking about here is WeCom.

The purpose of this paper is to send messages to enterprise members through WeCom application.

1. Create a new application

Log in to the web version of WeCom, and click Application Management → Application → to create an application.

Upload the logo of the application, enter the name of the application (hit new in the bond), and then select the visible range to successfully create an alarm application.

2. Obtain Secret

When you use Python to send alarm requests, only two APIs are used:

Get Token:

Https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={corpid}&corpsecret={secret}

Send request:

Https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token={token}

As you can see, the most important are corpid and secret:

Corpid: uniquely identify your business

Secret: an application-level key that the program knows which application you want to send to the enterprise.

Corpid can be obtained through my enterprise → enterprise information → enterprise id

Secret can be obtained by clicking on the newly created application (hit New Bond) → to view secret → send.

Finally, fill in the constants below with corpid and secret.

3 、 Code implementation import jsonimport timeimport requests''' this file mainly implements sending messages to enterprise members through WeCom application 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 " # receiver "toparty": "1", # receiving department "totag": "TagID1 | TagID2", # address book tag id "msgtype": "textcard", "agentid": 1000002 textcard # Application ID "textcard": {"title": "Bond New reminder", "description": content "url": "URL", "btntxt": "more"}, "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 "{timenow} attention! If you have a new debt today, keep playing new! ") Print ('message sent!') 4. Realize the effect:

At this point, I believe you have a deeper understanding of "how to use Python to achieve WeCom notification function". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report