K
K
kalterfad2021-06-01 08:04:02
Telegram
kalterfad, 2021-06-01 08:04:02

How to track the stop of the bot in telegram?

Good time of the day. Tell me, please, is it possible to track the stop and blocking of the bot by the user? There was a need to send information to an already existing list of connected users, but if the user stopped the bot, the telegram sends an error.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
U
UberPool, 2021-06-01
@kalterfad

There is no such possibility, but you can try to send a message to the user if an error occurs while doing something.
Python3

try:
    #пытаешься отправить сообщение
except: 
    pass #ничего не делаешь если возникает ошибка
            #лучше конечно обрабатывать не все возможные ошибки,а только ту которая возникает
            #нагуглив try except можешь найти больше инфы

javascript
try {
  // отправляешь сообщение 
} catch (err) {
  // делаешь что-то если возникает ошибка

}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question