MadelineProto/docs/API_docs/methods/messages_getHistory.md
2016-12-19 21:20:07 +03:00

37 lines
1.1 KiB
Markdown

## Method: messages\_getHistory
### Parameters:
| Name | Type | Required |
|----------|:-------------:|---------:|
|peer|[InputPeer](../types/InputPeer.md) | Required|
|offset\_id|[int](../types/int.md) | Required|
|offset\_date|[int](../types/int.md) | Required|
|add\_offset|[int](../types/int.md) | Required|
|limit|[int](../types/int.md) | Required|
|max\_id|[int](../types/int.md) | Required|
|min\_id|[int](../types/int.md) | Required|
### Return type: [messages\_Messages](../types/messages_Messages.md)
### 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);
}
$messages_Messages = $MadelineProto->messages_getHistory(['peer' => InputPeer, 'offset_id' => int, 'offset_date' => int, 'add_offset' => int, 'limit' => int, 'max_id' => int, 'min_id' => int, ]);
```