MadelineProtoDocs/docs/API_docs/methods/messages.setDefaultReaction.md
2024-05-01 14:53:46 +02:00

1.4 KiB

title description grand_parent parent image redirect_from
messages.setDefaultReaction Change default emoji reaction to use in the quick reaction menu: the value is synced across devices and can be fetched using [help.getConfig, `reactions_default` field](../methods/help.getConfig.html). Telegram RPC API Methods https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/messages_setDefaultReaction.html

Method: messages.setDefaultReaction

Back to methods index

Change default emoji reaction to use in the quick reaction menu: the value is synced across devices and can be fetched using help.getConfig, reactions_default field.

Parameters:

Name Type Description Required
reaction Reaction New emoji reaction Optional

Return type: Bool

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();

$Bool = $MadelineProto->messages->setDefaultReaction(reaction: $Reaction, );