1022 B
1022 B
title | description |
---|---|
geochats.getRecents | geochats.getRecents parameters, return type and example |
Method: geochats.getRecents
Parameters:
Name | Type | Required |
---|---|---|
offset | int | Yes |
limit | int | Yes |
Return type: geochats_Messages
Example:
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) {
$this->bot_login($token);
}
if (isset($number)) {
$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);
}
$geochats_Messages = $MadelineProto->geochats->getRecents(['offset' => int, 'limit' => int, ]);
Or, if you're into Lua:
geochats_Messages = geochats.getRecents({offset=int, limit=int, })