使用Node JS将用户发送的文件存储在Telegram Bot上

时间:2019-04-08 10:00:54

标签: node.js telegram-bot

嗨,我想将用户发送到我的电报机器人的文件存储到某处的远程服务器上。我该如何实施?

我尝试过的一些代码:

bot.on('document', (msg) =>{
  fileID = msg.document.file_id;
  const file = bot.getFile(fileID)

  //Produces basic information about the file
  file.then(function(result){
    console.log(result)
  })

  //Not sure what this does but the function returns a file stream
  const fileStream = bot.getFileStream(fileID);

})

0 个答案:

没有答案