Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 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:\Projects\Telegram Bot\Telegram Bot\bin\Debug\4.jpg";

I tested it with Bot.SendMessage and it worked fine, but I can't send a photo!

like image 415
sma6871 Avatar asked Jan 08 '23 16:01

sma6871


1 Answers

I used this code and it's worked!

var FileUrl = @"C:\\Users\\User\\Documents\\20160201_204055.jpg";
using (var stream = System.IO.File.Open(FileUrl, FileMode.Open))
        {
            FileToSend fts = new FileToSend();
            fts.Content = stream;
            fts.Filename = FileUrl.Split('\\').Last();
            var test = await bot.SendPhoto("@channel Name or chat_id", fts, "My Text");
        }
like image 132
8611670474 Avatar answered Jan 10 '23 05:01

8611670474