mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Gestione degli errori di telegram, chissà
This commit is contained in:
parent
53f0b681c3
commit
ad1d152cde
1 changed files with 3 additions and 1 deletions
|
@ -10,7 +10,7 @@ def getUpdates():
|
|||
parametri = {
|
||||
'offset': filemanager.readFile("lastid.txt"), #Update ID del messaggio da leggere
|
||||
'limit': 1, #Numero di messaggi da ricevere alla volta, lasciare 1
|
||||
'timeout': 300, #Secondi da mantenere attiva la richiesta se non c'e' nessun messaggio
|
||||
'timeout': 120, #Secondi da mantenere attiva la richiesta se non c'e' nessun messaggio
|
||||
}
|
||||
while(True):
|
||||
data = requests.get("https://api.telegram.org/bot" + telegramtoken + "/getUpdates", params=parametri).json()
|
||||
|
@ -21,6 +21,8 @@ def getUpdates():
|
|||
if('message' in data['result'][0]):
|
||||
if('text' in data['result'][0]['message']):
|
||||
return data['result'][0]['message']
|
||||
else:
|
||||
except Exception("Telegram non ha risposto con OK alla richiesta dei nuovi messaggi")
|
||||
|
||||
def sendMessage(content, to):
|
||||
"""Manda un messaggio a una chat."""
|
||||
|
|
Loading…
Reference in a new issue