InvokeWithApnsSecret

class pyrogram.raw.functions.InvokeWithApnsSecret

Official clients only, invoke with Apple push verification.

Details:
  • Layer: 223

  • ID: 0DAE54F8

Parameters:
  • nonce (str) – Nonce.

  • secret (str) – Secret.

  • query (Any function from functions) – Query.

Returns:

Any object from types

TL Schema

invokeWithApnsSecret#0dae54f8
{X:Type}
nonce:string
secret:string
query:!X

= X

Parameter Tree

InvokeWithApnsSecret
├── {XType}
├── noncestring
├── secretstring
└── queryX <!X>

Example

await app.invoke(
    InvokeWithApnsSecret(
        {X=None,
        nonce="text",
        secret="text",
        query=None,
    )
)