0

I´m using python-telegram-bot 8 and my bot is not processing messages that are sent by other bots in a group

Works OK with other users (not bots)

why my bot, don't see other bots messages?

def main():

    updater = Updater(bot_token)
    dp = updater.dispatcher

    dp.add_handler(MessageHandler(Filters.text,check_msg))
    dp.add_handler(MessageHandler(Filters.video | Filters.photo | Filters.document, check_file))
    dp.add_handler(MessageHandler(Filters.sticker, check_sticker))
Pang
  • 9,564
  • 146
  • 81
  • 122
Roberto Junior
  • 115
  • 1
  • 1
  • 9

1 Answers1

1

According to Bot FAQ, bots will not be able to see messages from other bots regardless of mode.

The only exception is the channel, if your bot is an admin of channel, they can see any messages.

Sean Wei
  • 7,433
  • 1
  • 19
  • 39