MadelineProtoDocs/docs/API_docs/constructors/inputKeyboardButtonUrlAuth.md

2.5 KiB

title description image
inputKeyboardButtonUrlAuth Button to request a user to [authorize](../methods/messages.acceptUrlAuth.md) via URL using [Seamless Telegram Login](https://telegram.org/blog/privacy-discussions-web-bots#meet-seamless-web-bots). https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputKeyboardButtonUrlAuth

Back to constructors index

Button to request a user to authorize via URL using Seamless Telegram Login.

Attributes:

Name Type Required Description
request_write_access Bool Optional Set this flag to request the permission for your bot to send messages to the user.
text string Yes Button text
fwd_text string Optional New text of the button in forwarded messages.
url string Yes An HTTP 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.
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.
bot InputUser 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: KeyboardButton

Example:

$inputKeyboardButtonUrlAuth = ['_' => 'inputKeyboardButtonUrlAuth', 'request_write_access' => Bool, 'text' => 'string', 'fwd_text' => 'string', 'url' => 'string', 'bot' => InputUser];

Or, if you're into Lua:

inputKeyboardButtonUrlAuth={_='inputKeyboardButtonUrlAuth', request_write_access=Bool, text='string', fwd_text='string', url='string', bot=InputUser}