--- title: auth.importAuthorization description: You cannot use this method directly, use $MadelineProto->importAuthorization($authorization) instead, see https://docs.madelineproto.xyz/docs/LOGIN.html image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Method: auth.importAuthorization [Back to methods index](index.md) You cannot use this method directly, use $MadelineProto->importAuthorization($authorization) instead, see https://docs.madelineproto.xyz/docs/LOGIN.html ### Parameters: | Name | Type | Description | Required | |----------|---------------|-------------|----------| |id|[int](../types/int.md) | You cannot use this method directly, use $MadelineProto->importAuthorization($authorization) instead, see https://docs.madelineproto.xyz/docs/LOGIN.html | Yes| |bytes|[bytes](../types/bytes.md) | You cannot use this method directly, use $MadelineProto->importAuthorization($authorization) instead, see https://docs.madelineproto.xyz/docs/LOGIN.html | Yes| ### Return type: [auth\_Authorization](../types/auth_Authorization.md) ### Can bots use this method: **YES** ### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)): ```php if (!file_exists('madeline.php')) { copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php'); } include 'madeline.php'; $MadelineProto = new \danog\MadelineProto\API('session.madeline'); $MadelineProto->start(); $auth_Authorization = $MadelineProto->auth->importAuthorization(['id' => int, 'bytes' => 'bytes', ]); ``` Or, if you're into Lua: ```lua auth_Authorization = auth.importAuthorization({id=int, bytes='bytes', }) ``` ### Errors | Code | Type | Description | |------|----------|---------------| |400|AUTH_BYTES_INVALID|The provided authorization is invalid| |400|USER_ID_INVALID|The provided user ID is invalid|