1.2 KiB
1.2 KiB
title | description |
---|---|
messages.getArchivedStickers | messages.getArchivedStickers parameters, return type and example |
Method: messages.getArchivedStickers
Parameters:
Name | Type | Required |
---|---|---|
masks | Bool | Optional |
offset_id | long | Yes |
limit | int | Yes |
Return type: messages_ArchivedStickers
Example:
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) { // Login as a bot
$MadelineProto->bot_login($token);
}
if (isset($number)) { // Login as a user
$sentCode = $MadelineProto->phone_login($number);
echo 'Enter the code you received: ';
$code = '';
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
$code .= fgetc(STDIN);
}
$MadelineProto->complete_phone_login($code);
}
$messages_ArchivedStickers = $MadelineProto->messages->getArchivedStickers(['masks' => Bool, 'offset_id' => long, 'limit' => int, ]);
Or, if you're into Lua:
messages_ArchivedStickers = messages.getArchivedStickers({masks=Bool, offset_id=long, limit=int, })