Aliaksei Levin

Results 707 comments of Aliaksei Levin

All available information on the usage is written in the example README.

See https://core.telegram.org/tdlib/getting-started#getting-chat-messages.

`GetMe()` returns a user. You must use `CreatePrivateChat` to create a private chat with a user.

You need a chat to send a message. You don't have one after calling `getMe`, because it returns a `user`, but not a `chat`.

A chat folder can be created using the method `createChatFolder`.

When regular messages are sent `disable_notification` means that notification will be shown without sound for those who should receive the notification. When a message is pinned without `disable_notification` all chat...

The error is returned by the Telegram servers. They compare the current message content and the new content provided by the bot. If they match, then the request is aborted...

> Is it possible "api.telegram.org" is forwarding my request to something else, getting maybe a network error, and resending the request on my behalf? The chance of this is extremely...

You can answer callback queries without any limits, so this is caused by the bot's code hanging up.

@mircoianese Bot API server will not send multiple concurrent callback queries from the same user to webhook. Bot doesn't receive new queries, because it didn't answer the previous query.