python操作钉钉机器人推送消息

群里面设置
python操作钉钉机器人推送消息_第1张图片
python操作钉钉机器人推送消息_第2张图片
python操作钉钉机器人推送消息_第3张图片
python操作钉钉机器人推送消息_第4张图片
python操作钉钉机器人推送消息_第5张图片
使用关键词,必须要携带这个关键词才能调用这个机器人
python操作钉钉机器人推送消息_第6张图片
下一步,这个就是操作这个钉钉机器人的接口
python操作钉钉机器人推送消息_第7张图片
allure测试报告 关键词一定要写在 content字段里面

import json

import requests


def dd_robot():
  HEADERS = {"Content-Type": "application/json;charset=utf-8"}
  # 之前复制的接口地址和token信息
  url = 'https://oapi.dingtalk.com/robot/send?xxx'
  #content里面要设置关键字
  data_info = {
    "msgtype": "text",
    "text": {
    "content": 'allure测试报告:lll'
    },
    "isAtAll": False
    #这是配置需要@的人
     # ,"at": {"atMobiles": ["15xxxxxx06",'18xxxxxx1']}
  }
  value = json.dumps(data_info)
  response = requests.post(url,data=value,headers=HEADERS)
  if response.json()['errmsg']!='ok':
    print(response.text)

if __name__ == '__main__':
    dd_robot()

测试
python操作钉钉机器人推送消息_第8张图片

你可能感兴趣的:(python)