Link Search Menu Expand Document

Method: messages.getMessageReadParticipants

Back to methods index

Get which users read a specific message: only available for groups and supergroups with less than chat_read_mark_size_threshold members, read receipts will be stored for chat_read_mark_expire_period seconds after the message was sent, see client configuration for more info ».

Parameters:

NameTypeDescriptionRequired
peerUsername, chat ID, Update, Message or InputPeerDialogOptional
msg_idintMessage IDOptional

Return type: Vector_of_ReadParticipantDate

Can bots use this method: NO

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();

$Vector_of_ReadParticipantDate = $MadelineProto->messages->getMessageReadParticipants(peer: $InputPeer, msg_id: $int, );