python使用钉钉机器人给钉钉发送消息

import requests

def dingmessage(msg):
	url='https://oapi.dingtalk.com/robot/send?access_token=2c5e2b764129e936ba9c43713a588caa7eeb168c132223a91ba97d80a6fee337'
	data={
		'msgtype':'text',
		'text':{
			'content': '通知:'+msg
		}
	}
	res=requests.post(url,json=data)

python使用钉钉机器人给钉钉发送消息_第1张图片

你可能感兴趣的:(Python,python,钉钉,机器人)