telegram-bot-api icon indicating copy to clipboard operation
telegram-bot-api copied to clipboard

send a pdf document with sendMessage

Open salicius opened this issue 1 year ago • 9 comments

Hi, how can i attach a document with the sendMessage method ?

salicius avatar Apr 25 '24 08:04 salicius

To send a document you need to pass inputMessageDocument as input_message_content to sendMessage.

levlam avatar Apr 25 '24 09:04 levlam

To send a document you need to pass inputMessageDocument as input_message_content to sendMessage.

sorry but i cant find it in https://core.telegram.org/bots/api#sendmessage, could you do an example please?

salicius avatar Apr 25 '24 09:04 salicius

In Bot API you can use https://core.telegram.org/bots/api#senddocument.

levlam avatar Apr 25 '24 09:04 levlam

In Bot API you can use https://core.telegram.org/bots/api#senddocument.

yes but in this way i have to use two different methods sendMessage and sendDocument, while i'd like use a single sendMessage and attach a document if it's possible. With sendDocument i can't send even a message, just a caption and i can't choose to put the document above or below the message

salicius avatar Apr 25 '24 09:04 salicius

sendMessage Use this method to send text messages.

sendDocument Use this method to send general files.

levlam avatar Apr 25 '24 10:04 levlam

sendMessage Use this method to send text messages.

sendDocument Use this method to send general files.

ok thanks, i know that. i'm saying if i can add an attachment file to sendMessage instead using two different methods and choose to put it above or below the message text like the link preview:

salicius avatar Apr 25 '24 10:04 salicius

See link_preview_options parameter. If the document is small enough it can be seen in link preview.

levlam avatar Apr 25 '24 10:04 levlam

thanks, but as he said i can't use that in sendDocument to decide whether to place it above or below

salicius avatar Apr 26 '24 17:04 salicius

Currently, caption is always shown below the corresponding document.

levlam avatar Apr 26 '24 21:04 levlam