WebAppData

class telegram.WebAppData(data, button_text, *, api_kwargs=None)[source]

Bases: telegram.TelegramObject

Contains data sent from a Web App to the bot.

Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their data and button_text are equal.

Examples

Webapp Bot

New in version 20.0.

Parameters:
  • data (str) – The data. Be aware that a bad client can send arbitrary data in this field.

  • button_text (str) – Text of the web_app keyboard button, from which the Web App was opened.

data[source]

The data. Be aware that a bad client can send arbitrary data in this field.

Type:

str

button_text[source]

Text of the web_app keyboard button, from which the Web App was opened.

Warning

Be aware that a bad client can send arbitrary data in this field.

Type:

str