messages.getEmojiKeywordsLanguages
Get info about an emoji keyword localization
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.messages.getEmojiKeywordsLanguages({
langCodes: ['random string here'],
}));
console.log(result); // prints the result
})();
TL schema
---functions---
messages.getEmojiKeywordsLanguages#4e9963b2 lang_codes:Vector<string> = Vector<EmojiLanguage>;
Parameters
Result
Vector[EmojiLanguage](https://core.telegram.org/type/EmojiLanguage)
Possible errors
Code
Type
Description
Can bots use this methd ?
yes
Related pages
Last updated
Was this helpful?