教你利用python实现企业微信发送消息
程序员文章站
2022-06-17 23:09:29
一、需要的参数1、通讯用户:touser 或 通讯组:toparty 2、企业id:corpid 3、应用id/密钥:agentid,secret二、获取通讯用户/组通讯录 用户的账号...
一、需要的参数
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企业微信发送消息内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!