I'm working on an application that integrates with Telegram and I had the problem to find a way how to receive messages from groups using Telegram Bot API
My code so far for sending a message to a group or channel my bot already admin on it. any suggestions?
static async Task<Telegram.Bot.Types.Message> DoSomethingAsync()
{
var Bot = new Telegram.Bot.Api("api_token");
return await Bot.SendTextMessage("chatid","Hello");
}