0

有没有办法使用python 中的电报库找到我的消息在电报中转发的位置?

注意:我的频道消息

4

2 回答 2

1

无法知道消息已转发到何处。任何可以看到您或您的频道消息的人都可以将它们转发到任何他们喜欢的地方。


编辑更新:

您可以使用GetMessagesPublicForwards获取您的频道消息转发到的其他公共频道中的消息列表。

于 2021-06-05T19:33:51.180 回答
-1

你可以用pyrogram像这样检查

from pyrogram improt filters

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

pyrorgam文档

于 2021-09-04T14:59:57.670 回答