# -*- coding: utf-8 -*- import requests url = 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=3be1e100-2860-4bc6-9169-xxxxxxxxxxxx' # python调用机器人自动发送文本消息 def demo1(): data = { 'msgtype': 'text', 'text': { 'content': '好好学习', 'mentioned_mobile_list': ['xxxx', '@all'] }} requests.post(url, json=data) # 发送Markdown格式类型的消息 def demo2(): data = { 'msgtype': 'markdown', 'markdown': { 'content': '# **一级标题, 粗体**\n' + '## *二级标题,斜体*\n' + '### 三级标题, 粗体\n' + '#### 四级标题,斜体\n' + '##### 五级标题 \n' + '###### 六级标题 \n' + '实时新增用户反馈<font color="warning">132例</font>,请相关同事注意。\n>' '类型:<font color=\"comment\">用户反馈 \n</font>' '普通用户反馈:<font color=\"comment\">117例 \n</font>' 'VIP用户反馈:<font color=\"comment\">15例 \n</font>' + '- 无序列表第一项 \n' + '- 无序列表第二项 \n' + '-1. 有序列表第1项 \n' + '-2. 有序列表第2项 \n' + '-3. 有序列表第3项 \n' + '-4. 有序列表第4项 \n' + '<font color="red">红色字体</font>\n' + '> 引用段落 ' + '[百度一下](http://www.baidu.conm) \n' + '-5.[各省明细数据链接地址,单击下载](https://danlu1.oss-cn-chengdu.aliyuncs.com/1919/yue/公司省份表.xlsx)' } } requests.post(url, json=data) demo2()
标签:序列表,url,微信,机器人,反馈,标题,自动化,requests,data From: https://www.cnblogs.com/zhaoyiguang/p/16714068.html