2019-06-24 15:45:02 +02:00
|
|
|
---
|
|
|
|
title: channels.getMessages
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Get [channel/supergroup](https://core.telegram.org/api/channel) messages
|
2019-06-24 15:45:02 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Method: channels.getMessages
|
|
|
|
[Back to methods index](index.md)
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Get [channel/supergroup](https://core.telegram.org/api/channel) messages
|
2019-06-24 15:45:02 +02:00
|
|
|
|
|
|
|
### Parameters:
|
|
|
|
|
|
|
|
| Name | Type | Description | Required |
|
|
|
|
|----------|---------------|-------------|----------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|channel|[Username, chat ID, Update, Message or InputChannel](../types/InputChannel.md) | Channel/supergroup | Optional|
|
2019-06-24 15:45:02 +02:00
|
|
|
|id|Array of [Message ID or InputMessage](../types/InputMessage.md) | The message IDs | Yes|
|
|
|
|
|
|
|
|
|
|
|
|
### Return type: [messages\_Messages](../types/messages_Messages.md)
|
|
|
|
|
|
|
|
### Can bots use this method: **YES**
|
|
|
|
|
|
|
|
|
|
|
|
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
|
|
|
|
|
|
|
|
|
|
|
|
```php
|
|
|
|
if (!file_exists('madeline.php')) {
|
|
|
|
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
|
|
|
|
}
|
|
|
|
include 'madeline.php';
|
|
|
|
|
|
|
|
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
|
|
|
|
$MadelineProto->start();
|
|
|
|
|
|
|
|
$messages_Messages = $MadelineProto->channels->getMessages(['channel' => InputChannel, 'id' => [InputMessage, InputMessage], ]);
|
|
|
|
```
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
messages_Messages = channels.getMessages({channel=InputChannel, id={InputMessage}, })
|
|
|
|
```
|
|
|
|
|
2019-09-02 17:41:28 +02:00
|
|
|
### Errors
|
2019-06-24 15:45:02 +02:00
|
|
|
|
2019-09-02 17:41:28 +02:00
|
|
|
| Code | Type | Description |
|
|
|
|
|------|----------|---------------|
|
|
|
|
|400|CHANNEL_INVALID|The provided channel is invalid|
|
|
|
|
|400|CHANNEL_PRIVATE|You haven't joined this channel/supergroup|
|
|
|
|
|400|MESSAGE_IDS_EMPTY|No message ids were provided|
|
2019-06-24 15:45:02 +02:00
|
|
|
|
|
|
|
|