MadelineProto/old_docs/API_docs_v71/methods/channels_readMessageContents.md

1.3 KiB

title description
channels.readMessageContents channels.readMessageContents parameters, return type and example

Method: channels.readMessageContents

Back to methods index

Parameters:

Name Type Required
channel InputChannel Yes
id Array of int Yes

Return type: Bool

Can bots use this method: NO

Example:

$MadelineProto = new \danog\MadelineProto\API();
if (isset($number)) { // Login as a user
    $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);
}

$Bool = $MadelineProto->channels->readMessageContents(['channel' => InputChannel, 'id' => [int], ]);

Or, if you're using the PWRTelegram HTTP API:

As a user:

POST/GET to https://api.pwrtelegram.xyz/userTOKEN/channels.readMessageContents

Parameters:

channel - Json encoded InputChannel

id - Json encoded array of int

Or, if you're into Lua:

Bool = channels.readMessageContents({channel=InputChannel, id={int}, })