MadelineProtoDocs/old_docs/API_docs_v41/methods/messages.getEmojiKeywords.md

1.2 KiB

title description image redirect_from
messages.getEmojiKeywords Get localized emoji keywords https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/messages_getEmojiKeywords.html

Method: messages.getEmojiKeywords

Back to methods index

Get localized emoji keywords

Parameters:

Name Type Description Required
lang_code string Language code Yes

Return type: EmojiKeywordsDifference

Can bots use this method: NO

MadelineProto Example (now async for huge speed and parallelism!):

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$EmojiKeywordsDifference = $MadelineProto->messages->getEmojiKeywords(['lang_code' => 'string', ]);

Or, if you're into Lua:

EmojiKeywordsDifference = messages.getEmojiKeywords({lang_code='string', })