python企业微信小程序发送信息
在使用下面代码之前先配置webhook
教程如下:
https://www.bilibili.com/vide服务器托管网o/BV1oH4y1S7pN/?vd_source=bee29ac3f59b719e046019f637738769
然后使用如下代码就可以发消息了:
代码如下:
#coding=gbk
import requests
def send(message:str):
url = "机器人webhook地址"
headers = {
"Content-Type": "application/json"
}
data = {
"msgtype": "text",
"text": {
"content": message,
"mentioned_list": ["@all"]
}
}
response = requests.post(url, headers=headers, json=data)
records = response.json()
return records
def sendAll(message:str):
url = "机器人webhook地址"服务器托管网
headers = {
"Content-Type": "application/json"
}
data = {
"msgtype": "text",
"text": {
"content": message,
"mentioned_list": ["@all"]
}
}
response = requests.post(url, headers=headers, json=data)
records = response.json()
return records
def test(stz):
send(stz)
stz="测试程序"
test(stz)
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
相关推荐: Apache Linkis 与 OceanBase 集成:实现数据分析速度提升
导语:恭喜 OceanBase 生态全景图中又添一员,Apache Linkis 构建了一个计算中间件层,以促进上层应用程序和底层数据引擎之间的连接、治理和编排。 近日,计算中间件 Apache Linkis 在其新版本中服务器托管网通过数据源功能,支持用户通…