MadelineProto/old_docs/API_docs_v27/methods/geochats_getFullChat.md

37 lines
899 B
Markdown
Raw Normal View History

---
title: geochats_getFullChat
description: geochats_getFullChat parameters, return type and example
---
## Method: geochats\_getFullChat
[Back to methods index](index.md)
### Parameters:
| Name | Type | Required |
|----------|:-------------:|---------:|
|peer|[InputGeoChat](../types/InputGeoChat.md) | Required|
### Return type: [messages\_ChatFull](../types/messages_ChatFull.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_ChatFull = $MadelineProto->geochats->getFullChat(['peer' => InputGeoChat, ]);
```