skip to Main Content

Telegram bot: GetUpdates Conflict – Telegram API

I have created the test Telegram bot console app using sample from this link https://github.com/TelegramBots/Telegram.Bot.Examples There is my main public static async Task Main() { ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; Bot = new TelegramBotClient(Configuration.BotToken); var me = await Bot.GetMeAsync();…

VIEW QUESTION
Back To Top
Search