python 发送消息给企业微信群
时间: 2023-08-12 22:00:19 浏览: 108
要通过 Python 发送消息给企业微信群,你可以使用企业微信提供的群机器人 API。下面是一个示例代码,演示如何使用 Python 发送消息给企业微信群:
```python
import requests
import json
# 设置群机器人的 Webhook 地址
webhook_url = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=你的群机器人密钥"
# 发送消息
def send_message(content):
headers = {
"Content-Type": "application/json"
}
data = {
"msgtype": "text",
"text": {
"content": content
}
}
response = requests.post(webhook_url, headers=headers, data=json.dumps(data))
return response.json()
# 示例发送消息
response = send_message("Hello, 企业微信群!")
print(response)
```
请确保替换示例代码中的 `你的群机器人密钥` 为你在企业微信群机器人中设置的具体密钥。此外,请确保你的 Python 环境中已安装 `requests` 库。
以上是通过群机器人 API 发送消息给企业微信群的示例代码。你可以根据自己的需求进行修改和扩展。
阅读全文