IruPC
IruPC

Reputation: 41

How to Disable Web Page Preview on Telegram Bot

Here is a Sample Code I use to Send a Reply to a User (A Python Telegram Bot)

        conf_mes = await e.reply(
            f"<a href='https://URL'>My Text</a>/n/n ..Description..",
            parse_mode="html",
            buttons=buts,
        )

How can I Disable Web Page Preview, When bot send Msg to User!

Upvotes: 4

Views: 7326

Answers (1)

danielninetyfour
danielninetyfour

Reputation: 101

add this parameter in the sendMessage method

disable_web_page_preview=True

Upvotes: 10

Related Questions