MadelineProtoDocs/old_docs/API_docs_v100/methods/channels.getMessages.md

1.8 KiB

title description image redirect_from
channels.getMessages Get [channel/supergroup](https://core.telegram.org/api/channel) messages https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/channels_getMessages.html

Method: channels.getMessages

Back to methods index

Get channel/supergroup messages

Parameters:

Name Type Description Required
channel Username, chat ID, Update, Message or InputChannel Channel/supergroup Optional
id Array of Message ID or InputMessage The message IDs Yes

Return type: messages.Messages

Can bots use this method: YES

MadelineProto Example (now async for huge speed and parallelism!):

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:

messages.Messages = channels.getMessages({channel=InputChannel, id={InputMessage}, })

Errors

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
406 AUTH_KEY_DUPLICATED An auth key with the same ID was already generated
-503 Timeout Timeout while fetching data