auth.DropTempAuthKeys

class pyrogram.raw.functions.auth.DropTempAuthKeys

Delete all temporary authorization keys except for the ones specified

Details:
  • Layer: 223

  • ID: 8E48A188

Parameters:

except_auth_keys (List of int 64-bit) – The auth keys that shouldn’t be dropped.

Returns:

bool

TL Schema

auth.dropTempAuthKeys#8e48a188
except_auth_keys:Vector<long>

= Bool

Parameter Tree

DropTempAuthKeys
└── except_auth_keysVector < long >

Example

await app.invoke(
    DropTempAuthKeys(
        except_auth_keys=[0],
    )
)