1.4 KiB
1.4 KiB
title | description | image |
---|---|---|
auth.importAuthorization | Logs in a user using a key transmitted from his native data-centre. | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Method: auth.importAuthorization
Logs in a user using a key transmitted from his native data-centre.
Parameters:
Name | Type | Description | Required |
---|---|---|---|
id | int | User ID | Yes |
bytes | bytes | Authorization key | Yes |
Return type: auth_Authorization
Can bots use this method: YES
MadelineProto Example (now async for huge speed and parallelism!):
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:
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 |