教你利用python實現企業微信發送消息

一、需要的參數

1、通訊用戶:touser 或 通訊組:toparty
 
    2、企業ID:corpid
 
    3、應用ID/密鑰:agentId,secret

二、獲取通訊用戶/組

通訊錄 用戶的賬號或創建組的部門ID

三、獲取企業ID

我的企業最下方

四、獲取應用ID/密鑰

企業微信管理員登錄企業微信,

應用管理創建應用

可見范圍:發給誰

五、腳本代碼

#! /usr/bin/env python
# -*- coding: UTF-8 -*-
 
import requests, sys
 
 
class SendWeiXinWork():
    def __init__(self):
        self.CORP_ID = "xxx"  # 企業號的標識
        self.SECRET = "xxx"  # 管理組憑證密鑰
        self.AGENT_ID = xxx  # 應用ID
        self.token = self.get_token()
 
    def get_token(self):
        url = "https://qyapi.weixin.qq.com/cgi-bin/gettoken"
        data = {
            "corpid": self.CORP_ID,
            "corpsecret": self.SECRET
        }
        req = requests.get(url=url, params=data)
        res = req.json()
        if res['errmsg'] == 'ok':
            return res["access_token"]
        else:
            return res
 
    def send_message(self, to_user, content):
        url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=%s" % self.token
        data = {
            # "touser": to_user,  # 發送個人就填用戶賬號
            "toparty": to_user,  # 發送組內成員就填部門ID
            "msgtype": "text",
            "agentid": self.AGENT_ID,
            "text": {"content": content},
            "safe": "0"
        }
 
        req = requests.post(url=url, json=data)
        res = req.json()
        if res['errmsg'] == 'ok':
            print("send message sucessed")
            return "send message sucessed"
        else:
            return res
 
 
if __name__ == '__main__':
    SendWeiXinWork = SendWeiXinWork()
    SendWeiXinWork.send_message("2", "測試a")

六、效果

到此這篇關於教你利用python實現企業微信發送消息的文章就介紹到這瞭,更多相關python企業微信發送消息內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: