1.新增自訂機器人
#相關學習推薦:python影片教學
2.編寫python程式碼請求釘子機器人所給予的webhook
釘子自訂機器人官方文件
安全方式使用加籤的方式:
第一步,把timestamp "\n" 金鑰當作簽名字串,使用HmacSHA256演算法計算簽名,然後進行Base64 encode,最後再把簽章參數再進行urlEncode,得到最終的簽章(需要使用UTF -8字符集)。
參數 |
|
# timestamp |
目前時間戳,單位是毫秒,與請求呼叫時間誤差不能超過1小時 |
##secret | 金鑰,機器人安全設定頁面,加簽一欄下方顯示的SEC開頭的字串 |
參數 | |
# timestamp | 第一步驟使用到的時間戳記 |
sign | 第一步得到的簽章值 |
第三步,發送請求
url='生成的Webhook×tamp={}&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中文網其他相關文章!