python发送钉钉机器人脚本

#!/usr/bin/python
# -*- coding: utf-8 -*-
import requests
import json
import sys
import os

headers = {'Content-Type': 'application/json;charset=utf-8'}
api_url = "https://oapi.dingtalk.com/robot/send?access_token=xxxxxx"

def msg(text):
json_text= {
"msgtype": "text",
"at": {
"atMobiles": [
"120xxx", "130xxx"
],
"isAtAll": False
},
"text": {
"content": text
}
}
print requests.post(api_url,json.dumps(json_text),headers=headers).content

if __name__ == '__main__':
text = sys.argv[1]
msg(text)

原文地址:https://www.cnblogs.com/Qing-840/p/9267926.html