Update nodeseek_sign.py

This commit is contained in:
Qianyue
2025-01-17 19:02:10 +08:00
committed by GitHub
parent 61a0c8474a
commit ef36efdb87

View File

@@ -17,7 +17,7 @@ def telegram_Bot(token,chat_id,message):
url = f'{telegram_api_url}/bot{token}/sendMessage'
data = {
'chat_id': chat_id,
'thread_id': thread_id,
'message_thread_id': thread_id,
'text': message
}
r = requests.post(url, json=data)