小言_互联网的博客

python使用自定义钉钉机器人

426人阅读  评论(0)

1.添加自定义机器人

2.编写python代码请求钉钉机器人所给的webhook

钉钉自定义机器人官方文档

安全方式使用加签的方式:

第一步,把timestamp+"\n"+密钥当做签名字符串,使用HmacSHA256算法计算签名,然后进行Base64 encode,最后再把签名参数再进行urlEncode,得到最终的签名(需要使用UTF-8字符集)。

参数

说明

timestamp

当前时间戳,单位是毫秒,与请求调用时间误差不能超过1小时

secret

密钥,机器人安全设置页面,加签一栏下面显示的SEC开头的字符串

 


  
  1. import requests
  2. #python 3.8
  3. import time
  4. import hmac
  5. import hashlib
  6. import base64
  7. import urllib.parse
  8. timestamp = str(round(time.time() * 1000))
  9. secret = '加签时生成的密钥'
  10. secret_enc = secret.encode( 'utf-8')
  11. string_to_sign = '{}\n{}'.format(timestamp, secret)
  12. string_to_sign_enc = string_to_sign.encode( 'utf-8')
  13. hmac_code = hmac.new(secret_enc, string_to_sign_enc, digestmod=hashlib.sha256).digest()
  14. sign = urllib.parse.quote_plus(base64.b64encode(hmac_code))
  15. print(timestamp)
  16. print(sign)

第二步,把 timestamp和第一步得到的签名值拼接到URL中。

参数

说明

timestamp

第一步使用到的时间戳

sign

第一步得到的签名值

https://oapi.dingtalk.com/robot/send?access_token=XXXXXX&timestamp=XXX&sign=XXX

第三步,发送请求


  
  1. url= '生成的Webhook&timestamp={}&sign={}'.format(timestamp, sign)
  2. print (url)
  3. headers={
  4. 'Content-Type': 'application/json'
  5. }
  6. json={ "msgtype": "text",
  7. "text": {
  8. "content": "888"
  9. } }
  10. resp=requests.post(url=url,headers=headers,json=json)
  11. print (resp.text)

结果:

 

整体代码:


  
  1. import requests
  2. #python 3.8
  3. import time
  4. import hmac
  5. import hashlib
  6. import base64
  7. import urllib.parse
  8. timestamp = str(round(time.time() * 1000))
  9. secret = '加签时生成的密钥'
  10. secret_enc = secret.encode( 'utf-8')
  11. string_to_sign = '{}\n{}'.format(timestamp, secret)
  12. string_to_sign_enc = string_to_sign.encode( 'utf-8')
  13. hmac_code = hmac.new(secret_enc, string_to_sign_enc, digestmod=hashlib.sha256).digest()
  14. sign = urllib.parse.quote_plus(base64.b64encode(hmac_code))
  15. print(timestamp)
  16. print(sign)
  17. url= '生成的Webhook&timestamp={}&sign={}'.format(timestamp, sign)
  18. print (url)
  19. headers={
  20. 'Content-Type': 'application/json'
  21. }
  22. json={ "msgtype": "text",
  23. "text": {
  24. "content": "测试"
  25. } }
  26. resp=requests.post(url=url,headers=headers,json=json)
  27. print (resp.text)

 


转载:https://blog.csdn.net/u011444756/article/details/106857863
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场