我是靠谱客的博主 风趣蓝天,最近开发中收集的这篇文章主要介绍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实现企业微信自动推送消息的全部内容,希望文章能够帮你解决Python实现企业微信自动推送消息所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部