InvokeWithReCaptcha

class pyrogram.raw.functions.InvokeWithReCaptcha

Official clients only: re-execute a method call that required reCAPTCHA verification via a RECAPTCHA_CHECK_%s__%s, where the first placeholder is the action, and the second one is the reCAPTCHA key ID.

Details:
  • Layer: 223

  • ID: ADBB0F94

Parameters:
  • token (str) – reCAPTCHA token received after verification.

  • query (Any function from functions) – The original method call.

Returns:

Any object from types

TL Schema

invokeWithReCaptcha#adbb0f94
{X:Type}
token:string
query:!X

= X

Parameter Tree

InvokeWithReCaptcha
├── {XType}
├── tokenstring
└── queryX <!X>

Example

await app.invoke(
    InvokeWithReCaptcha(
        {X=None,
        token="text",
        query=None,
    )
)