I do with the help of Python and telebot telegram bot.
There was a question: I send the user links, and the first one is attached. How to cancel the attachment?
I do with the help of Python and telebot telegram bot.
There was a question: I send the user links, and the first one is attached. How to cancel the attachment?
You need to use the option disable_web_page_preview the sendMessage method when sending a message to the user.
disable_web_page_preview- Disables link previews for this message
Send true to cancel the preview of the web page. By default, disable_web_page_preview set to false .
Source: https://ru.stackoverflow.com/questions/587857/
All Articles