Clubbingbuy.com — a platform for joint purchases of information products, where you can get access to the best courses, books and materials for minimal money!
guys i have one telegram channel where me and my friend post all the deals
i want that when i send any post in main channel its automatically copy in my backup channel any one can help me to understand how i can copy my own msgs
Add the bot to both your main channel and backup channel.
In the main channel, the bot needs permission to read channel posts.
In the backup channel, give it permission to post messages.
Run a small script or automation that detects each new channel_post and uses Telegram’s copyMessage method to copy it to the backup channel.
Bots can receive posts from channels where they are members, and copyMessage can reproduce the post without displaying the “Forwarded from” header. There are many ways
Use a Telegram user account session through the Telegram API, not a normal BotFather bot.
A bot generally receives new updates after it is added; it cannot simply request and clone the entire old history through the Bot API. Telegram’s user API supports retrieving chat history, and Telethon exposes this through iter_messages() and forward_messages().