telegram-bot-api
telegram-bot-api copied to clipboard
Telegram Bot API server
In order to reconcile the chat's per-user state with the external app state, bots should be able to enumerate all chat participants ids. We are going to be implementing this...
Currently it is impossible to get topic name without getting forum_topic_created or forum_topic_edited event. I suggest adding something like getForumTopic or getForumTopicsByID or getForumTopics to Bot API.
Telegram bot api don't have parameter **schedule_date**. This is very necessary to send messages to the channel from the bot, which can be edited before publication.
My telegram mini apps is not opening why?
1. use [sendDocument](https://core.telegram.org/bots/api#senddocument) API with ``document`` and ``thumbnail`` parameter set. ```sh curl -i "https://api.telegram.org/botTOKEN/sendDocument" -F "chat_id=CHAT_ID" -F "document=@file_example_WEBM_1920_3_7MB.webm" -F "[email protected]" ``` ```json { "ok": true, "result": { "message_id": 1781334, "from":...
Greetings, I would like to bring up the media_group topic again. I read your replies to other issues on this topic and came to the conclusion that you don't want...
I'm a little stumped, please bear with me. I have a bot that sent a message to a group yesterday at 7 a.m. US/Pacific, then edited it successfully at 12:10...
**Steps to reproduce**: ``` mkdir /tmp/test git clone https://github.com/tdlib/telegram-bot-api.git /tmp/test/ cd /tmp/test/telegram-bot-api docker run --rm -it -w /app -v $PWD:/app ubuntu:latest bash apt update apt install make git zlib1g-dev libssl-dev...
Could this repository have tag releases? It would make package maintenance much easier and let us to implement automatic updates in Termux.
I have encountered a significant memory usage issue with the Telegram Bot API server. I couldn't find any options related to memory limits or memory localization in the documentation or...