钉钉机器人接口

2018-12-12  本文已影响0人  数据小菜鸟
# -*- coding: utf-8 -*-
import requests,json

#消息内容,url地址
def dingtalk(msg,webhook):
    headers = {'Content-Type': 'application/json; charset=utf-8'}
    data = {'msgtype': 'text', 'text': {'content': msg}, 'at': {'atMobiles': [], 'isAtAll': False}}
    post_data = json.dumps(data)
    response = requests.post(webhook, headers=headers, data=post_data)
    return response.text



webhook = 'https://oapi.dingtalk.com/robot/send?access_token=aaa02da492d2b30f1955f1cecffca296dc9a1c4ba1c872b9bc9b7fdbfa7992f6'
dingtalk("msg test",webhook)
image.png image.png
上一篇 下一篇

猜你喜欢

热点阅读