Привет. Я хочу сохранить файлы, отправленные на мой 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);
})