help.getRecentMeUrls

Get recently used t.me links

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.help.getRecentMeUrls({
        referer: 'random string here',
        }));
    console.log(result); // prints the result
})();

TL schema

t.me

Parameters

Result

help.RecentMeUrls

Possible errors

Can bots use this methd ?

yes

Last updated