2017-02-18 199 views
-1

我試圖發送帶有ID的文件,但對某些文件不起作用,我正在使用 node-telegram-bot-api模塊。Telegram Bot通過Node.js發送PDF文件

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"} 

回答

0

找到我Awnser Here

發送由file_id的
file_id的是每一個人機器人獨特的,無法從轉讓一個機器人到另一個。