如何从 url 在电报机器人中发送 exe 文件
How to send exe file in telegram bot from url
我无法在电报机器人中发送 exe 文件
例如这是 7z 下载 link : http://www.7-zip.org/a/7z1604-x64.exe
https://api.telegram.org/botToken/sendDocument?chat_id=chatId&document=http://www.7-zip.org/a/7z1604-x64.exe
当我发送此文件时 return 我 :
{"ok":false,"error_code":400,"description":"Bad Request: wrong file identifier/HTTP URL specified"}
是否可以在电报机器人中发送 exe 文件?
好的。让我们看看 documentation:
Sending by URL: n sendDocument, sending by URL will currently only work for gif, pdf and zip files.
您无法通过 URL 发送 .exe
文件。在您的情况下,您需要
而不是通过 url 发送
Post the file using multipart/form-data in the usual way that files are uploaded via the browser. 10 MB max size for photos, 50 MB for other files.
我无法在电报机器人中发送 exe 文件 例如这是 7z 下载 link : http://www.7-zip.org/a/7z1604-x64.exe
https://api.telegram.org/botToken/sendDocument?chat_id=chatId&document=http://www.7-zip.org/a/7z1604-x64.exe
当我发送此文件时 return 我 :
{"ok":false,"error_code":400,"description":"Bad Request: wrong file identifier/HTTP URL specified"}
是否可以在电报机器人中发送 exe 文件?
好的。让我们看看 documentation:
Sending by URL: n sendDocument, sending by URL will currently only work for gif, pdf and zip files.
您无法通过 URL 发送 .exe
文件。在您的情况下,您需要
Post the file using multipart/form-data in the usual way that files are uploaded via the browser. 10 MB max size for photos, 50 MB for other files.