Example #1
0
        private static void SetToken(ITelegramClient telegramClient, string authenticationToken)
        {
            try
            {
                telegramClient.SetAuthenticationToken(authenticationToken);
            }
            catch (Exception e)
            {
                Console.WriteLine("Authentication token could not be set, make sure it's correct");
                return;
            }

            Console.WriteLine("Authentication token is now set");
        }