messages.getReplies

Get messages in a reply thread

Example

const {Api, TelegramClient} = require('telegram');
const {StringSession} = require('telegram/sessions');

const session = new StringSession('');
const client = new TelegramClient(session, apiId, apiHash, {});

(async function run() {
    const result = await client.invoke(new Api.messages.getReplies({
        peer: new Api.InputPeer({...}),
        msgId: 7855235,
        offsetId: 9695761,
        offsetDate: 8619023,
        addOffset: 4679718,
        limit: 2057604,
        maxId: 3135654,
        minId: 6971168,
        hash: 5441484,
        }));
    console.log(result); // prints the result
})();

TL schema

Parameters

Name

Type

Description

peer

Peer

msg_id

Message ID

limit

Maximum number of results to return, see pagination

max_id

If a positive value was transferred, the method will return only messages with ID smaller than max_id

min_id

If a positive value was transferred, the method will return only messages with ID bigger than min_id

Result

messages.Messages

Possible errors

Code

Type

Description

Can bots use this methd ?

yes

How to fetch results from large lists of objects.

Last updated

Was this helpful?