首頁  >  文章  >  後端開發  >  學習python使用自訂釘釘機器人的範例程式碼

學習python使用自訂釘釘機器人的範例程式碼

coldplay.xixi
coldplay.xixi轉載
2020-08-13 17:12:342866瀏覽

學習python使用自訂釘釘機器人的範例程式碼

1.新增自訂機器人

#相關學習推薦:python影片教學

2.編寫python程式碼請求釘子機器人所給予的webhook

釘子自訂機器人官方文件

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

第一步,把timestamp "\n" 金鑰當作簽名字串,使用HmacSHA256演算法計算簽名,然後進行Base64 encode,最後再把簽章參數再進行urlEncode,得到最終的簽章(需要使用UTF -8字符集)。

import requests
 
 
#python 3.8
import time
import hmac
import hashlib
import base64
import urllib.parse
 
timestamp = str(round(time.time() * 1000))
secret = '加签时生成的密钥'
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))
print(timestamp)
print(sign)

參數

# timestamp

目前時間戳,單位是毫秒,與請求呼叫時間誤差不能超過1小時

##secret

金鑰,機器人安全設定頁面,加簽一欄下方顯示的SEC開頭的字串

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

參數

# timestamp

第一步驟使用到的時間戳記

sign

第一步得到的簽章值

第三步,發送請求

url='生成的Webhook&timestamp={}&sign={}'.format(timestamp, sign)
 
 
print (url)
headers={
 'Content-Type':'application/json'
}
json={"msgtype": "text",
 "text": {
  "content": "888"
 } }
resp=requests.post(url=url,headers=headers,json=json)
print (resp.text)

結果:

整體程式碼:

import requests
 
 
#python 3.8
import time
import hmac
import hashlib
import base64
import urllib.parse
 
timestamp = str(round(time.time() * 1000))
secret = '加签时生成的密钥'
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))
print(timestamp)
print(sign)
 
 
url='生成的Webhook×tamp={}&sign={}'.format(timestamp, sign)
 
 
print (url)
headers={
 'Content-Type':'application/json'
}
json={"msgtype": "text",
 "text": {
  "content": "测试"
 } }
resp=requests.post(url=url,headers=headers,json=json)
print (resp.text)

相關學習推薦:

程式設計影片

以上是學習python使用自訂釘釘機器人的範例程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:jb51.net。如有侵權,請聯絡admin@php.cn刪除