Skip to content
Advertisement

Telegram Bot: Forwarding Messages from Private Group

Is there any way using Python / JS to forward messages which I, as a member, do receive in a private read-only group? I’m trying to set it up using python-telegram-bot but it seems I gotta add the bot to the group to have it interact with the contents sent in the group. But I can’t as Im just a reading / receiving member…

Is there maybe a way without using the Telegram API, but using some sort of JS Browser automation to forward those? This is the only thing which comes to my mind… Thanks in advance!

Advertisement

Answer

Answering my own question in case someone needs it.

As @CallMeStag pointed out, one needs a library which support “User bots”. These are librarys directly implementing the MTProto.

For python, e.g. Pyrogram is suitable and very easy to use.

First of all, one needs an API key and API hash to identify the Python Script on the Telegram server to communicate in the MTProto.

https://my.telegram.org/auth?to=apps -> Login using your credentials and create an “App”. Define those into API_ID and API_HASH below.

Now, I use this code to copy messages from the SOURCE_CHAT to the TARGET_chat:

JavaScript

To find out the CHAT_ID of Source and Target, I temporarly disabled the Filter, and printed the message.

JavaScript

Doing so, enables you to: whenever receiving a message in the specific group, you can find message.chat.id (attention: negative Values!). Configure those for SOURCE_CHAT and TARGET_CHAT in the full script above.

EDIT: Another option to get all chat IDs for all dialogues without first needing someone to send a message in the channel/group/private/chat:

JavaScript

Simply call it once and you’ll get a list of dialogues 🙂

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement