Python实现企业微信自动推送消息

代码

import requests
import json

class WechatAlert():
    def __init__(self,corpid,corpsecret):
        self.url = 'https://qyapi.weixin.qq.com/cgi-bin/gettoken'
        self.corpid = corpid
        self.corpsecret = corpsecret

    def get_token(self):
        #获取token时,携带企业id和secret(注册企业号时,后台可查)
        url = self.url
        values = {'corpid': self.corpid,
                  'corpsecret': self.corpsecret,
                  }
        req = requests.get(url, params=values)
        data = json.loads(req.text)
        return data["access_token"]

    def send_msg(self,values):
        #给单个人发送,也可以发送给多个人,但是不是一个群,"touser" : "ZhangYuan","agentid":"1000002",
        url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=" + self.get_token()
        values = {"touser" : "ZhangYuan",
          "toparty":"",
          "totag":"",
          "msgtype":"text",
          "agentid":"1000002",
          "text":{
            "content": values   # 要推送的内容
          },
          "safe":"0"
          }
        a = requests.post(url, json=values)
alert = WechatAlert('id,'secret')
if __name__ == '__main__':
    alert.send_msg("恭喜发财"))

企业ID通过登录企业微信–>我的企业–>企业信息 即可查看
Secrete 可点击应用与小程序, 然后选择要通过哪个应用进行推送,也可自建,选定应用后,点击 api 可查看Secret
send_msg 方法传入的参数就是要推送的内容

你可能感兴趣的:(Python实现企业微信自动推送消息)