python 编写一个向企业微信群机器人发送图文的例子
时间: 2024-05-28 14:03:44 浏览: 184
好的,以下是一个向企业微信群机器人发送图文的 Python 代码示例:
```python
import requests
import json
# 替换为自己的企业微信群机器人 Webhook 地址
webhook_url = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
# 图文消息格式
news = {
"msgtype": "news",
"news": {
"articles": [
{
"title": "这是一篇测试图文消息",
"description": "这是测试图文消息的描述",
"url": "https://www.example.com",
"picurl": "https://www.example.com/image.jpg"
}
]
}
}
# 发送 POST 请求
response = requests.post(
url=webhook_url,
data=json.dumps(news),
headers={'Content-Type': 'application/json'}
)
# 输出结果
print(response.status_code)
print(response.content)
```
其中,需要将 `webhook_url` 替换为自己的企业微信群机器人 Webhook 地址。`news` 变量定义了一条图文消息的格式,包括标题、描述、链接和图片地址。最后,通过 `requests` 库发送 POST 请求,将图文消息发送到群机器人。发送成功后,会返回响应码和响应内容。
阅读全文