edit_inline_text()#
- Client.edit_inline_text()#
Edit the text of inline messages.
Usable by ❌ Users ✅ Bots- Parameters:
inline_message_id (
str
) – Identifier of the inline message.text (
str
) – New text of the message.parse_mode (
ParseMode
, optional) – By default, texts are parsed using both Markdown and HTML styles. You can combine both syntaxes together.entities (List of
MessageEntity
) – List of special entities that appear in message text, which can be specified instead of parse_mode.link_preview_options (
LinkPreviewOptions
, optional) – Link preview generation options for the messagereply_markup (
InlineKeyboardMarkup
, optional) – An InlineKeyboardMarkup object.
- Returns:
bool
– On success, True is returned.
Example
# Bots only # Simple edit text await app.edit_inline_text(inline_message_id, "new text") # Take the same text message, remove the web page preview only await app.edit_inline_text( inline_message_id, message.text, link_preview_options=types.LinkPreviewOptions( is_disabled=True ) )