I have bot which can takes photo with caption, so I need to forward this whole message to some group, also, this bot can already forward messages with text only, how can I do this with telebot and python?
Question posted in Telegram API
A comprehensive official documentation can be found here.
A comprehensive official documentation can be found here.
2
Answers
I found answer:
@bot.message_handler(content_types=['photo', 'text'], func=lambda message: True)
And also I create check, if message is photo by:
The method you’re looking for is
Telebot.send_photo(chat_id, photo, caption)
, you can check the documentation here.