This is the Telegram adapter for tg-blog, a front-end for displaying telegram (or any compatible) channel data as an interactive web page.
Telegram has become increasingly fragile, recently revoking usernames for inactive channels, and often randomly banning regular users misclassified as spam. During the username revoking, many channels of deceased individuals have been remove from public space, no longer accessible using t.me
links. This tool helps to maintain Telegram channel data in case of an accidental event, and also to publicly display inactive channels that have been revoked.
- You can add this to your blog so that it syncs with your telegram channel (e.g. Azalea's Blog).
- You can also use this to back up and display another person's channel (e.g. donotexist_A's backup on One Among Us).
First, install Python >= 3.11
. Then, run pip install tgc
Then, to support video/animation/sticker conversion, you have to install the following non-python dependencies:
- Install Node 19.2 and yarn 1.22
yarn global add puppeteer-lottie-cli
- Install
ffmpeg
using your system package manager
If you only need a one-time export, you can use mode 1. To do this, you first need to export a channel using tdesktop.
To convert an export file into a format supported by tg-blog, you can run tgce <export path>
If you have the permission to add a bot account to a channel, or invite a self-bot account, you can use the MTProto crawler for automatic incremental export updates. (Please, do not log into your own Telegram account for crawling, there's a very high chance of being mis-classified as spam and get banned)
Using this method, it can automatically update the channel backup incrementally, and the information will be more complete. However, it is more difficult to set up than mode 1.
- Obtain
api_id
andapi_hash
by creating your Telegram application (Official Guide)- Log into https://my.telegram.org/apps
- Fill out the form to create an application
- Or, if you want to go against Telegram's EULA for your convenience, you can leave them blank to use Telegram's official client's API hash at your own risk.
- Choose which type of account to log in:
- Bot account: Create a bot using the @BotFather bot.
- Self-bot account: Leave
bot_token
blank, it will prompt you to login. You should only use a self-bot when you're not the admin of the channel (because inviting a bot requires admin access).
- Fill in the tokens in
~/.config/tgc/config.toml
as shown below
# Telegram API id & hash
api_id = 10000000
api_hash = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
# Telegram bot token (leave blank to log into self-bot account)
bot_token = "0000000000:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
After setting up the keys, you can proceed to setting up the channel:
- Either invite your bot to the channel or join the channel on your self-bot account
- Forward a channel message to @RawDataBot to obtain the channel ID. (You'll see a JSON response, and you can find the ID from the
forward_from_chat
field) - Fill in the channel info in
~/.config/tgc/config.toml
as shown below
# One export entry in a list of exports
[[exports]]
chat_id = -1001191767119 # Telegram channel chat id
path = "exports/hykilp" # Output Path
After all setup is complete, you can proceed to running the crawler.
Simply run the tgc
command.
You can set additional configuration for each export entry like below:
Field | Description | Type |
---|---|---|
size_limit_mb |
Limit downloaded file size (skip large files) | float |
If you want to generate RSS feed, you can add the following under the export entry:
[[exports]]
chat_id = -1001191767119 # Telegram channel chat id
path = "exports/hykilp" # Output Path
[exports.rss]
title = "小桂桂的回忆录 📒"
link = "https://aza.moe/life"
description = "「我们所经历的每个平凡的日常,也许就是连续发生的奇迹」"
language = "zh-cn"
image_url = "https://aza.moe/meru_256px.png"
If you want to automatically backup/sync telegram channel data using GitHub Actions, you can do this.
- Create your
config.toml
- Make a fork of https://github.com/hykilpikonna/blog-data
- In GitHub's Settings tab, create a secret called
TGC_CONFIG
, and paste yourconfig.toml
there. - Remember to set a
size_limit_mb
to below 100 so that git lfs won't warn you for pushing large files.