skip to Main Content

Send Photo Telegram API

I want to send a photo using the Telegram.Bot library, but it's not working! Here is my code: private void btnSendImage_Click(object sender, RoutedEventArgs e) { var Bot = new Telegram.Bot.Api(token); Task<Telegram.Bot.Types.Update[]> res = Bot.GetUpdates(); List<string> users = GetIds(); foreach (var…

VIEW QUESTION

Telegram API messages order

I am building a telegram bot. This means I am managing several chats at once (each with a unique chat id). When a user sends a message to the bot replies with an answer. I am using the telegram API…

VIEW QUESTION
Back To Top
Search