skip to Main Content

Is there a way to find where my message forwarded in telegram using Telegram libraries in python ?

note : my channels messages

2

Answers


  1. There is no way to know where a message has been forwarded to. Anyone who can see your or your channels messages can forward them wherever they like to.


    Edit to Update:

    You can use GetMessagesPublicForwards to get a list of messages in other public channels that your channel message was forwarded to.

    Login or Signup to reply.
  2. you can check like this with pyrogram

    from pyrogram improt filters
    
    @app.on_message(filters.channel)
    def updates(_, message):
        if message.forward_date:
            print("This message forwarded")
    

    pyrorgam docs

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search