【发布时间】:2018-09-16 18:09:19
【问题描述】:
我正在尝试发送带有 ID 的文件,但不适用于某些文件,我正在使用 node-telegram-bot-api 模块。
bot.sendDocument(msg.chat.id, "BQADBAADFAADAllAUeZn_0YHHRjNAg"); //ok
bot.sendDocument(msg.chat.id, "http://kmmc.in/wp-content/uploads/2014/01/lesson2.pdf");//ok
bot.sendDocument(msg.chat.id, "BQADBAADAgAD8jBJUZjgAdwyxsADAg") // Not Ok
我有这个错误:
Unhandled rejection Error: 400 {"ok":false,"error_code":400,"description":"Bad Request: Wrong file identifier/HTTP URL specified"}
【问题讨论】:
标签: javascript node.js telegram telegram-bot