upload.reuploadCdnFile
Request a reupload of a certain file to a CDN DC.
Example
const {Api, TelegramClient} = require('telegram');
const {StringSession} = require('telegram/sessions');
const session = new StringSession('');
const client = new TelegramClient(session, apiId, apiHash, {});
(async function run() {
const result = await client.invoke(new Api.upload.reuploadCdnFile({
fileToken: Buffer.from('some bytes here'),
requestToken: Buffer.from('some bytes here'),
}));
console.log(result); // prints the result
})();
TL schema
---functions---
upload.reuploadCdnFile#9b2754a8 file_token:bytes request_token:bytes = Vector<FileHash>;
Parameters
Result
Vector[FileHash](https://core.telegram.org/type/FileHash)
Possible errors
Code
Type
Description
400
RSA_DECRYPT_FAILED
Internal RSA decryption failed
Can bots use this methd ?
yes
Related pages
Last updated
Was this helpful?