Interface UpdateAppRecaptchaVerificationRequired

A request can't be completed unless reCAPTCHA verification is performed; for official mobile applications only. The method setApplicationVerificationToken must be called once the verification is completed or failed. Subtype of Update.

interface UpdateAppRecaptchaVerificationRequired {
    @type: "updateApplicationRecaptchaVerificationRequired";
    action: string;
    recaptcha_key_id: string;
    verification_id: number;
}

Properties

@type: "updateApplicationRecaptchaVerificationRequired"
action: string

The action for the check.

recaptcha_key_id: string

Identifier of the reCAPTCHA key.

verification_id: number

Unique identifier for the verification process.