LoginUrl

class telegram.LoginUrl(url, forward_text=None, bot_username=None, request_write_access=None, *, api_kwargs=None)[source]

Bases: telegram.TelegramObject

This object represents a parameter of the inline keyboard button used to automatically authorize a user. Serves as a great replacement for the Telegram Login Widget when the user is coming from Telegram. All the user needs to do is tap/click a button and confirm that they want to log in. Telegram apps support these buttons as of version 5.7.

Sample bot: @discussbot

Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their url is equal.

Note

You must always check the hash of the received data to verify the authentication and the integrity of the data as described in Checking authorization

Parameters:
  • url (str) – An HTTPS URL to be opened with user authorization data added to the query string when the button is pressed. If the user refuses to provide authorization data, the original URL without information about the user will be opened. The data added is the same as described in Receiving authorization data.

  • forward_text (str, optional) – New text of the button in forwarded messages.

  • bot_username (str, optional) – Username of a bot, which will be used for user authorization. See Setting up a bot for more details. If not specified, the current bot’s username will be assumed. The url’s domain must be the same as the domain linked with the bot. See Linking your domain to the bot for more details.

  • request_write_access (bool, optional) – Pass True to request the permission for your bot to send messages to the user.

url[source]

An HTTPS URL to be opened with user authorization data added to the query string when the button is pressed. If the user refuses to provide authorization data, the original URL without information about the user will be opened. The data added is the same as described in Receiving authorization data.

Type:

str

forward_text[source]

Optional. New text of the button in forwarded messages.

Type:

str

bot_username[source]

Optional. Username of a bot, which will be used for user authorization. See Setting up a bot for more details. If not specified, the current bot’s username will be assumed. The url’s domain must be the same as the domain linked with the bot. See Linking your domain to the bot for more details.

Type:

str

request_write_access[source]

Optional. Pass True to request the permission for your bot to send messages to the user.

Type:

bool