使用telegram.bot发送照片

时间:2015-11-17 13:14:37

标签: c# telegram-bot

我想在电报中创建一个机器人。搜索之后,我在Nuget包中找到了telegram.bot。

但我发送照片时遇到问题。函数定义类似于

Bot.SendPhoto(int channelId, string photo, string caption)

但我不知道string photo参数中的预期内容。我应该将图像转换为base64字符串,还是传递图像路径,还是......?

我的代码目前看起来像这样

var Bot = new Telegram.Bot.Api("API KEY");
var b = new System.Net.WebClient().DownloadData(a.DefaultImage());
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(new System.IO.MemoryStream(b));
var z = bmp.GetThumbnailImage(200, (200 * bmp.Height) / bmp.Width, 
   new System.Drawing.Image.GetThumbnailImageAbort(
      delegate { return true; }), IntPtr.Zero);
System.IO.MemoryStream ms = new System.IO.MemoryStream();
z.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
var x = new Telegram.Bot.Types.FileToSend() 
{ 
    Filename = a.DefaultImage().Split('/').LastOrDefault(), Content = ms 
};

var t = Bot.SendPhoto("@Chanel", x, a.Title);

但这导致异常

  

Telegram.Bot.Types.ApiRequestException:[错误]:错误请求:文件到   发送必须是非空的

3 个答案:

答案 0 :(得分:5)

根据source code method documentation,您应传递"将file_id作为字符串重新发送已在Telegram服务器上的照片,或使用multipart / form-data"上传新照片。我的猜测是参数注释是通用的,并且此重载仅接受服务器上现有文件的file_id。

/// <summary>
/// Use this method to send photos. On success, the sent Message is returned.
/// </summary>
/// <param name="chatId">Unique identifier for the target chat</param>
/// <param name="photo">Photo to send. You can either pass a file_id as String to resend a photo that is already on the Telegram servers, or upload a new photo using multipart/form-data.</param>
/// <param name="caption">Optional. Photo caption (may also be used when resending photos by file_id).</param>
/// <param name="replyToMessageId">Optional. If the message is a reply, ID of the original message</param>
/// <param name="replyMarkup">Optional. Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user.</param>
/// <returns>On success, the sent Message is returned.</returns>
public async Task<Message> SendPhoto(int chatId, string photo, string caption = "", int replyToMessageId = 0, ReplyMarkup replyMarkup = null)

重载

public async Task<Message> SendPhoto(int chatId, FileToSend photo, 
    string caption = "", int replyToMessageId = 0,
    ReplyMarkup replyMarkup = null)

接受包含文件名和流的FileToSend。使用第二次重载来上传新照片。

免责声明:我还没有使用过该API,因此这些仅仅是检查源代码时的推论。

答案 1 :(得分:1)

您也可以尝试这样=&gt;

Bot.SendPhotoAsync(Chatid ,  new FileToSend(FileName,Streaminput),Caption);

此api是发送照片的默认api,带有电报机器人标题。

答案 2 :(得分:0)

如果您需要,也可以尝试这样做。

Bot.SendPhoto(int channelId,photo : "http://abc.jpeg",caption:"hii");

在电报机器人上你发送图像,视频就像2路一样。首先是你可以发送像转换你的图像到流然后发送和第二是我给像刚刚传递照片:“这里给url作为字符串”然后电报机器人服务器自动从网址下载此图像。