一、需要的參數(shù)
1、通訊用戶:touser 或 通訊組:toparty 2、企業(yè)ID:corpid 3、應(yīng)用ID/密鑰:agentId,secret
二、獲取通訊用戶/組
通訊錄 用戶的賬號(hào)或創(chuàng)建組的部門(mén)ID
三、獲取企業(yè)ID
我的企業(yè)最下方
四、獲取應(yīng)用ID/密鑰
企業(yè)微信管理員登錄企業(yè)微信,
應(yīng)用管理創(chuàng)建應(yīng)用
可見(jiàn)范圍:發(fā)給誰(shuí)
五、腳本代碼
#! /usr/bin/env python
# -*- coding: UTF-8 -*-
import requests, sys
class SendWeiXinWork():
def __init__(self):
self.CORP_ID = "xxx" # 企業(yè)號(hào)的標(biāo)識(shí)
self.SECRET = "xxx" # 管理組憑證密鑰
self.AGENT_ID = xxx # 應(yīng)用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, # 發(fā)送個(gè)人就填用戶賬號(hào)
"toparty": to_user, # 發(fā)送組內(nèi)成員就填部門(mén)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", "測(cè)試a")
六、效果
到此這篇關(guān)于python怎么實(shí)現(xiàn)企業(yè)微信發(fā)送信息的文章就介紹到這了,更多python的學(xué)習(xí)內(nèi)容請(qǐng)搜索W3Cschool以前的文章或繼續(xù)瀏覽下面的相關(guān)文章。