1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-12 17:47:22 +01:00
MadelineProto/docs/API_docs/methods/channels.getChannels.md

31 lines
756 B
Markdown

## Method: channels.getChannels
### Parameters:
| Name | Type | Required |
|----------|:-------------:|---------:|
|id|Array of [InputChannel](../types/InputChannel.md) | Required|
### Return type: [messages\_Chats](../types/messages\_Chats.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_Chats = $MadelineProto->channels->getChannels(['id' => [InputChannel], ]);
```