Hosting Telegram Bot API
If you have wanted to build a telegram bot that uploads some files for the user, you have definitely experienced the 50MB cap for sending files to be a huge bottleneck in your process. You search for it and the results are not clear on what to do to bypass this. There are some GitHub issue results saying you can host your own bot API to bypass this but they’re not clear and the docs for them is not great. Like you go to their GitHub page but the instructions are not clear. How much ram does it need? How much cpu does it need? It doesn’t say anything. Look no more and let’s dive into it.
Why should I host the bot API?#
According to the bot API GitHub page these are the main reasons:
- Download files without a size limit.
- Upload files up to 2000 MB.
- Upload files using their local path and the file URI scheme.
- Use an HTTP URL for the webhook.
- Use any local IP address for the webhook.
- Use any port for the webhook.
- Set max_webhook_connections up to 100000.
- Receive the absolute local path as a value of the file_path field without the need to download the file after a getFile request.
I don’t know about you but my main problem was always the size limit. Say you want to create a YouTube downloader bot but can’t send a file larger than 50MBs? What year is this?
How to run it?#
Let’s say you decided to run the Telegram bot API yourself, how is it done?
Their GitHub page has instructions to build it yourself but if you’re running your bot on a 5$ VPS like me building it can take half an hour. If not they have a setup page that gets you instructions for your platform. Check it out. It gives you commands to run. https://tdlib.github.io/telegram-bot-api/build.html
Docker to the rescue#
So your CPU can’t handle building like mine. Use docker then. Install docker and docker compose for your platform. You can find instructions on their website.
After installing docker and docker compose follow these instructions. I’m using Ubuntu on my VPS. But the distro doesn’t matter. If you’re using Windows or MacOS to run it on your machine instructions are similar. You can make sense of it
mkdir botapi
cd botapi
You need a docker compose file here’s the template you should replace your api_id and api_hash inside it. You need to get them from Telegram itself. Google it it’s simple
version: '3.8'
services:
telegram-bot-api:
image: divideprojects/docker-telegram-bot-api:latest
environment:
TELEGRAM_API_ID: "api_id"
TELEGRAM_API_HASH: "api_hash"
# you can also configure other env variables here
volumes:
- telegram-bot-api-data:/var/lib/telegram-bot-api
ports:
- 8081:8081
volumes:
telegram-bot-api-data:
So after replacing your api id and api hash inside this file. Check if everything is running smoothly by running the container once.
docker compose up
If you see no errors then everything is find. Ctrl C out of it and detach from it so it runs by itself. docker compose up -d
Congrats the API should be working right now. In the example config it runs on port 8081. You can also set API keys to keep this safe but it’s your choice.
How much resources does it need?#
Honestly not that much. I’m using the absolute most basic kind of VPS. It has 1 shared cpu core and 4 gig of ram. when it’s doing things it doesn’t even hit 2 gigs of ram. So you can run it everywhere. BUT don’t build it yourself on such low end hardware and just use docker.
How to use it?#
It really depends on what language you’re trying to build your bots with. I’m using python-telegram-bot library in Python to build my bots. so for me was as simple as when calling Application.builder()
to send it my api key to just add the base url after that. so it became something like this:
app = (
Application.builder()
.token(bot_token)
.base_url("http://localhost:8081/bot")
.build()
)
Consult your library docs for it.
That’s it.