-
Notifications
You must be signed in to change notification settings - Fork 24
Closed
Labels
questionFurther information is requestedFurther information is requested
Description
Hello
Im using longpolling to get messages,
net core 3.1
Telegram.BotAPI version 6.6.1
public void StartPolling() { var updates = Bot.GetUpdates<IEnumerable<Update>>(); while (true) { if (updates.Any()) { foreach (var update in updates) { var botInstance = new SidomarBotService(_Token, _configuration); botInstance.OnUpdate(update); } var offset = updates.Last().UpdateId + 1; updates = Bot.GetUpdates<IEnumerable<Update>>(offset); } else { updates = Bot.GetUpdates<IEnumerable<Update>>(); } } }
Whats the best way to handle exception throws by startpolling error such as :
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested
