吾爱破解 - LCG - LSG |安卓破解|病毒分析|www.52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 4118|回复: 6
上一主题 下一主题
收起左侧

[Python 原创] 【Python】获取企业微信汇报数据,机器人推送源码教程

[复制链接]
跳转到指定楼层
楼主
hack78 发表于 2021-11-15 11:34 回帖奖励
事情是这样的, 企业微信汇报数据可以发送到群聊,实在是不方便,而且需要手动点击才能看到,效果如下

经过一番改造以后的效果。


原理,通过企业微信汇报数据接口:https://work.weixin.qq.com/api/doc/90000/90135/93394
和企业微信机器人接口https://work.weixin.qq.com/api/doc/90000/90136/91770

来实现以上的功能;话不多说,直接上代码;
[Python] 纯文本查看 复制代码
# coding=utf-8

import time
import requests

class WX:
    def __init__(self):
        self.corpid = ""#企业ID
        self.corpsecret = ""#汇报应用Secret
        self.access_url = " https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={}&corpsecret={}".format(
            self.corpid, self.corpsecret
        )

        self.webhook = ""#群Webhook地址
    def GET_ACCESS_Token(self):
        response = requests.get(self.access_url).json()
        print(response)
        access_token = response['access_token']
        return access_token

    def get_record_list(self, cursor=0):
        starttime = str(time.mktime(time.strptime(str(time.strftime("%Y-%m-%d") + " 00:00:00"), '%Y-%m-%d %H:%M:%S')))[
                    :-2]
        endtime = str(time.mktime(time.strptime(str(time.strftime("%Y-%m-%d") + " 23:59:59"), '%Y-%m-%d %H:%M:%S')))[
                  :-2]
        print(int((time.time()-60)))
        url = "https://qyapi.weixin.qq.com/cgi-bin/oa/journal/get_record_list?access_token={}".format(self.GET_ACCESS_Token())
        data = {
            #"starttime": int(time.time()), #正式使用的时间戳
            "starttime": int((time.time()-60)), #测试使用的时间戳
            #"endtime": int(time.time()+86400), #正式使用的时间戳
            "endtime": int((time.time()+60)),  #测试使用的时间戳
            "cursor": cursor,
            "limit": 100,
            "filters": [
                {
                    "key": "template_id",
                    "value": "3TjzDqVEqLJFs6GrC7T5WNXiU1LiGmLY1guJ7hs4"#订单号,日报的
                }
            ]
        }
        response = requests.post(url=url, json=data).json()
        # print(response)
        # print(len(response['journaluuid_list']))
        print(response)
        result = [[response['next_cursor']], response['journaluuid_list']]
        print('1111',result)
        return result

    def GET_details(self, journaluuid):
        edg = 1
        user_list = [["张三", "******"], ["李四", '********'], ["王五", '18*****191']]#这个地方无法获取用户名,所以做了一个手动列表,前面用户名,后面是企业微信用户ID
        url = "https://qyapi.weixin.qq.com/cgi-bin/oa/journal/get_record_detail?access_token={}".format(str(self.GET_ACCESS_Token()))
        data = {
            "journaluuid": journaluuid,
        }
        response = requests.post(url=url, json=data).json()['info']
        print(response)

        template_name = response['template_name']
        report_time = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(response['report_time']))
        submitter = response['submitter']['userid']
        for user in user_list:
            if submitter in user:
                submitter = user[0]

        receiverss = []
        number = 0
        while True:
            try:
                receivers = response['receivers'][number]['userid']
                for user in user_list:
                    if receivers in user:
                        receiver = user[0]
                        receiverss.append(receiver)
                number += 1
            except Exception:
                break
        try:
            receivers = ','.join(receiverss)
            Product = response['apply_data']['contents'][0]['value']['text']
            Phone = response['apply_data']['contents'][1]['value']['text']
            Customer_Name = response['apply_data']['contents'][2]['value']['text']
            Customer_Company = response['apply_data']['contents'][3]['value']['text']
            Province = response['apply_data']['contents'][4]['value']['text']
            Company_category = response['apply_data']['contents'][5]['value']['selector']['options'][0]['value'][0][
                'text']
            MarkDownText = " ### %s\r %s\r\n>   ### 今日工作:\n<font color=\"warning\"> %s\r</font>\n"  "> ### 明日计划:\n <font color=\"info\"> %s\r</font>\n  提交时间:%s" %(
                    submitter,template_name, Product, Phone,  report_time
                           )
            print(MarkDownText)
            return MarkDownText,edg
        except Exception as e:
            print(e)
            edg = 0
            receivers = ','.join(receiverss)
            Product = response['apply_data']['contents'][0]['value']['text']
            Phone = response['apply_data']['contents'][1]['value']['text']
            Customer_Name = response['apply_data']['contents'][2]['value']['text']
            MarkDownText = " ### %s\r %s\r\n>   ### 今日工作:\n<font color=\"warning\"> %s\r</font>\n"  "> ### 明日计划:\n <font color=\"info\"> %s\r</font>\n  提交时间:%s" %(
                    submitter,template_name, Product, Phone,  report_time
                           )
            print(MarkDownText)
            return MarkDownText,edg
    def Run(self):
        try:
            next_cursor = [0]
            record_list = self.get_record_list(next_cursor[0])
            print(record_list)
            next_cursor = record_list[0]
            record_list = record_list[1]
            details_list = record_list[-1]
            "模板不一样所以暂时把单号固定"
            # details = "8WBtd3jNAAfiJtjHRHm8x64LiRx4oJFLX92kvvVnQ4SRaFbqsEYp4Jji981BwAexjP"
            Text, edg = self.GET_details(journaluuid=details_list)
            headers = {"Content-Type": "text/plain"}
            data = {
                "msgtype": "markdown",
                "markdown": {
                    "content": Text,
                }
            }
            if edg == 0:
                response = requests.post(url=self.webhook, headers=headers, json=data).text
                print("pooo")
                print(response)
            else:
                url = ''#机器人地址
                response = requests.post(url=url, headers=headers, json=data).text
                print("pooo2")
                print(response)
        except:
            print("还没更新")
        # for details in details_list:
        #     Text = self.GET_details(journaluuid=details)
        #     headers = {"Content-Type": "text/plain"}
        #     data = {
        #         "msgtype": "markdown",
        #         "markdown": {
        #             "content": Text,
        #         }
        #     }
        #     response = requests.post(url=self.webhook, headers=headers, json=data).text
        #     print("pooo")
        #     print(response)


if __name__ == '__main__':
    while 1:
        app = WX()
        app.Run()
        time.sleep(60)

最后
放在环境里执行,一分钟会自动获取一次数据进行实时推送到机器人群里;

免费评分

参与人数 2吾爱币 +2 热心值 +2 收起 理由
lingyiling + 1 + 1 我很赞同!
Zeaf + 1 + 1 用心讨论,共获提升!

查看全部评分

本帖被以下淘专辑推荐:

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

沙发
tyler998 发表于 2021-11-15 12:07
感谢分享,支持原创
3#
diorlin 发表于 2021-11-15 15:21
4#
yangming0825 发表于 2022-5-31 10:54
大神,获取企业微信汇报中的模板那,方便帮忙解答下嘛?我这没有发送成功
5#
 楼主| hack78 发表于 2022-6-1 15:19 |楼主
yangming0825 发表于 2022-5-31 10:54
大神,获取企业微信汇报中的模板那,方便帮忙解答下嘛?我这没有发送成功

创建好汇报模版,然后获取模版id
6#
zmshan2008 发表于 2022-11-30 10:28
正想试试这个怎么弄,在学习中。。。
7#
yangming0825 发表于 2022-12-18 15:46
大神,我只想要一个汇报模板里的其中一个字段,咋能获取到啊,看企微那边好像每个人提交的汇报内容顺序不一样,这种情况怎么搞哇,麻烦大神帮解答一下
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

快速回复 收藏帖子 返回列表 搜索

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-9-8 10:05

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表