一、创建企业群聊
二、创建机器人
点击完成,复制webhook地址,如下:
三、执行代码
import requests
web_hook_url = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=872d4caa-5b5d-466f-b532-0a3d882ecc71"
res = requests.post(
url=web_hook_url,
json={
"msgtype": "text",
"text": {
"content": "此商品有货,请查看详情",
"mentioned_list": ["@all"]
}
}
)
res.close()