Skip to content
This repository was archived by the owner on Dec 5, 2021. It is now read-only.
This repository was archived by the owner on Dec 5, 2021. It is now read-only.

Read messages from user chat (not channel) #1045

@KomodoCrypto

Description

@KomodoCrypto

Hello, I am successfully listing the channels and read their messages with the following code:

 TLChannel chatFromDialogs = dialogs.Chats.OfType<TLChannel>().FirstOrDefault(c => c.Title == chatTitle);

            var channel = chatFromDialogs;
            var chatPeer = new TLInputPeerChannel()
            {
                ChannelId = channel.Id,
                AccessHash = channel.AccessHash.Value
            };

var msgs = (TLChannelMessages)(await client.GetHistoryAsync(chatPeer, offsetId: 0, limit: 5));

However, for a single users, the chats are not listed as TLChannel, but I can see the list of users at dialogs.Users. How to get then the messages from a user chat?

Thank you

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions