InvokeWithGooglePlayIntegrity

class pyrogram.raw.functions.InvokeWithGooglePlayIntegrity

Official clients only, invoke with Google Play Integrity token.

Details:
  • Layer: 223

  • ID: 1DF92984

Parameters:
  • nonce (str) – Nonce.

  • token (str) – Token.

  • query (Any function from functions) – Query.

Returns:

Any object from types

TL Schema

invokeWithGooglePlayIntegrity#1df92984
{X:Type}
nonce:string
token:string
query:!X

= X

Parameter Tree

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

Example

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