通过 curl 将文件发布到电报机器人 api

Posting a file via curl to the telegram bot api

我试过以下方法:

curl -F name=document -F upload=@<path_to_the_file> \ 
     -H "Content-Type:multipart/form-data" \ 
     "https://api.telegram.org/bot<token>/sendDocument?chat_id=<chat_id>"

它returns{"ok":false,"error_code":400,"description":"[Error]: Bad Request: there is no document in request"}

我做错了什么?

Here 是一些关于 sendDocument 方法的文档。

希望这对您有所帮助。注意<token>.

前有"bot"
curl -F document=@"path/to/some.file" https://api.telegram.org/bot<token>/sendDocument?chat_id=<chat_id>