auth.ImportBotAuthorization

class pyrogram.raw.functions.auth.ImportBotAuthorization

Login as a bot

Details:
  • Layer: 223

  • ID: 67A3FF2C

Parameters:
  • flags (int 32-bit) – Reserved for future use

  • api_id (int 32-bit) – Application identifier (see. App configuration)

  • api_hash (str) – Application identifier hash (see. App configuration)

  • bot_auth_token (str) – Bot token (see bots)

Returns:

auth.Authorization

TL Schema

auth.importBotAuthorization#67a3ff2c
flags:int
api_id:int
api_hash:string
bot_auth_token:string

= auth.Authorization

Parameter Tree

ImportBotAuthorization
├── flagsint
├── api_idint
├── api_hashstring
└── bot_auth_tokenstring

Example

await app.invoke(
    ImportBotAuthorization(
        flags=0,
        api_id=0,
        api_hash="text",
        bot_auth_token="text",
    )
)