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 update in res.Result)
{
if (!users.Contains("" + update.Message.Chat.Id))
{
AddId("" + update.Message.Chat.Id);
}
}
users = GetIds();
foreach (var item in users)
{
if (item.Length > 0)
{
var rep = Bot.SendPhoto(Convert.ToInt32(item), txtImagePath.Text, txtMessage.Text);
}
}
}
and txtImagePath.text= "D:ProjectsTelegram BotTelegram BotbinDebug4.jpg";
I tested it with Bot.SendMessage
and it worked fine, but I can’t send a photo!
2
Answers
you need to pass a Stream to the function if you want to send an new image.
I used this code and it’s worked!