1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
| #!/usr/bin/env python3
# _*_coding:utf-8 _*_
import sys, requests, json, time, hmac, hashlib, base64, urllib.parse
PROXY_CONFIG = None
"""
PROXY_CONFIG = {
'http': 'http://127.0.0.1:1234',
'https': 'http://127.0.0.1:1234'
}
"""
subject = str(sys.argv[1])
message = str(sys.argv[2])
robot_token = str(sys.argv[3])
secret = str(sys.argv[4])
timestamp = str(round(time.time() * 1000))
secret_enc = secret.encode('utf-8')
string_to_sign = '{}\n{}'.format(timestamp, secret)
string_to_sign_enc = string_to_sign.encode('utf-8')
hmac_code = hmac.new(secret_enc, string_to_sign_enc, digestmod=hashlib.sha256).digest()
sign = urllib.parse.quote_plus(base64.b64encode(hmac_code))
robot = 'https://oapi.dingtalk.com/robot/send?access_token=' + robot_token + '×tamp=' + timestamp + '&sign=' + sign
data = {
"msgtype": "markdown",
'at': {
'isAtAll': True
},
'markdown': {
'title': 'Title',
'text': subject + '\n' + message
}
}
headers = {
'Content-Type': 'application/json'
}
response = requests.post(url=robot, data=json.dumps(data), headers=headers, proxies=PROXY_CONFIG)
print(response.json())
|