python 企业微信接口_python调用企业微信接口发送群聊消息代码参考

# Author: sea 2019

import requests

import json

import time

class WebchatUtil:

corpid = '必须填写你自己申请的'

secret = '固定填写你自己申请的'

access_token = ''

@staticmethod

def init_access_token():

# 获取token,必须最长两个小时换一次7200秒

url = 'https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={}&corpsecret={}'

getr = requests.get(url=url.format(WebchatUtil.corpid, WebchatUtil.secret))

WebchatUtil.access_token = getr.json().get('access_token')

def sendMarkdownMessage(chatid,*,app_name,ip,err_count,errs_str):

n_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())

data = {

"chatid": chatid,

"msgtype": "markdown",

"markdown": {

"content": " # 日志风险预警 \

\n ## 错误主体:{app_name}({ip}) \

\n ### 统计时间: {n_time} \

\n ### 错误总数: {err_count} \

\n ### 详情摘要:\

\n #### {errs_str} \

\n \

\n ### 每个错误都是质量风险,请相应负责人对每个错误及时跟进处理好,如需了解更多日志详情,请登录服务器查看具体日志文件".format(app_name=app_name, n_time=n_time,ip=ip, err_count=err_count, errs_str=errs_str)

},

"safe": 0

}

m_url = 'https://qyapi.weixin.qq.com/cgi-bin/appchat/send?access_token={}'

result = requests.post(url=m_url.format(WebchatUtil.access_token), data=json.dumps(data))

return result.json()

@staticmethod

def sendTextMessage(chatid,content):

data = {

"chatid": chatid,

"msgtype": "text",

"text": {

"content": content

},

"safe": 0

}

m_url = 'https://qyapi.weixin.qq.com/cgi-bin/appchat/send?access_token={}'

result = requests.post(url=m_url.format(WebchatUtil.access_token), data=json.dumps(data))

return result.json()

if __name__ == '__main__':

WebchatUtil.init_access_token()

WebchatUtil.sendMarkdownMessage( 'xxx' , app_name=xxx, ip=xxx,err_count=xxx, errs_str=xxx )

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值