Sending Message in Telegram Bot With Images

Sending message in telegram bot with images

You can use /sendphoto and set the captionwhich appears under an image.

https://core.telegram.org/bots/api#sendphoto

How can I send image with text using telegram bot API?

use caption parameter in sendPhoto method

telegram_msg = requests.get('https://api.telegram.org/bot<botAPI>/sendPhoto?chat_id=<chat_id>&caption=some text')

How to send a photo with .webp extension via telegram bot

You have to specify the proper path of the file.

photo_url <- "https://www.gstatic.com/webp/gallery/1.webp"
bot.send_photo(message.chat.id, photo=photo_url)


Related Topics



Leave a reply



Submit