Interface LoginUrlInfoRequestConfirmation

An authorization confirmation dialog needs to be shown to the user. Subtype of LoginUrlInfo.

interface LoginUrlInfoRequestConfirmation {
    @type: "loginUrlInfoRequestConfirmation";
    bot_user_id: number;
    domain: string;
    request_write_access?: boolean;
    url: string;
}

Properties

@type: "loginUrlInfoRequestConfirmation"
bot_user_id: number

User identifier of a bot linked with the website.

domain: string

A domain of the URL.

request_write_access?: boolean

True, if the user must be asked for the permission to the bot to send them messages.

url: string

An HTTP URL to be opened.