langpack.getLanguages
Get information about all languages in a localization pack
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.langpack.getLanguages({
langPack: 'random string here',
}));
console.log(result); // prints the result
})();
TL schema
---functions---
langpack.getLanguages#42c6978f lang_pack:string = Vector<LangPackLanguage>;
Parameters
Name
Type
Description
Result
Vector[LangPackLanguage](https://core.telegram.org/type/LangPackLanguage)
Possible errors
Code
Type
Description
400
LANG_PACK_INVALID
The provided language pack is invalid
Can bots use this methd ?
yes
Related pages
Last updated
Was this helpful?