Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

js to python converter online

const { Api, TelegramClient } = require("telegram");
const { StringSession } = require("telegram/sessions");

const session = new StringSession(""); // You should put your string session here
const client = new TelegramClient(session, apiId, apiHash, {});

(async function run() {
  await client.connect(); // This assumes you have already authenticated with .start()

  const result = await client.invoke(
    new Api.upload.GetWebFile({
      location: new Api.InputWebFileLocation({
        url: "some string here",
        accessHash: BigInt("-4156887774564"),
      }),
      offset: 43,
      limit: 100,
    })
  );
  console.log(result); // prints the result
})();
Source by piter.io #
 
PREVIOUS NEXT
Tagged: #js #python #converter #online
ADD COMMENT
Topic
Name
2+3 =