mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-03 20:37:47 +01:00
872 B
872 B
title | description |
---|---|
messages.clearRecentStickers | Clear all recent stickers |
Method: messages.clearRecentStickers
Clear all recent stickers
Return type: Bool
Can bots use this method: NO
MadelineProto Example:
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->clearRecentStickers();
PWRTelegram HTTP API example (NOT FOR MadelineProto):
As a user:
POST/GET to https://api.pwrtelegram.xyz/userTOKEN/messages.clearRecentStickers
Parameters:
Or, if you're into Lua:
Bool = messages.clearRecentStickers({})