1.首先企業(yè)微信新建群眯漩,并添加聊天機(jī)器人
-
獲取聊天機(jī)器人的webhook
3.Python代碼如下:
import requests
def send_weixin(content):
url = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=00000" # 這里就是群機(jī)器人的Webhook地址
headers = {"Content-Type": "application/json"} # http數(shù)據(jù)頭矗钟,類型為json
data = {
"msgtype": "text",
"text": {
"content": content, # 讓群機(jī)器人發(fā)送的消息內(nèi)容。
"mentioned_list": ["@all"], # all所有人
}
}
r = requests.post(url, headers=headers, json=data) # 利用requests庫(kù)發(fā)送post請(qǐng)求
# 調(diào)用一下
send_weixin("正在巡檢中....")
# 發(fā)送帶有樣式的消息,也可以加入鏈接進(jìn)行跳轉(zhuǎn)
send_weixin("實(shí)時(shí)新增用戶反饋<font color=\"warning\">132例</font>,請(qǐng)相關(guān)同事注意。\n
>類型:<font color=\"comment\">用戶反饋</font>
>普通用戶反饋:<font color=\"comment\">117例</font>
>VIP用戶反饋:<font color=\"comment\">15例</font>")
4.執(zhí)行成功