通过电报机器人发送带有描述的文件

时间:2016-09-18 05:46:18

标签: telegram telegram-bot

我尝试使用Telegram bot用户从我的服务器向Telegram组发送pdf文档及其小描述。我可以使用方法/ sendDocument自行发送文档。但是,这并不是我想要的。我想知道是否有可能呢?

curl -F chat_id="-xxxxxxxxxx" -F document=@"/home/telegram/someFile.pdf" -F text="Text Message with attachment" https://api.telegram.org/bot<token>/sendMessage

1 个答案:

答案 0 :(得分:2)

sendDocument方法有一个键caption。你需要把描述放在那里。

curl -F chat_id="-xxxxxxxxxx" -F document=@"/home/telegram/someFile.pdf" -F caption="Text Message with attachment" https://api.telegram.org/bot<token>/sendDocument