account.ResetWebAuthorization

class pyrogram.raw.functions.account.ResetWebAuthorization

Log out an active web telegram login session

Details:
  • Layer: 223

  • ID: 2D01B9EF

Parameters:

hash (int 64-bit) – Session hash

Returns:

bool

TL Schema

account.resetWebAuthorization#2d01b9ef
hash:long

= Bool

Parameter Tree

ResetWebAuthorization
└── hashlong

Example

await app.invoke(
    ResetWebAuthorization(
        hash=0,
    )
)