Link Search Menu Expand Document

Method: auth.importAuthorization

Back to methods index

You cannot use this method directly, use $MadelineProto->importAuthorization($authorization) instead, see https://docs.madelineproto.xyz/docs/LOGIN.html

Parameters:

NameTypeDescriptionRequired
idlongUser IDYes
bytesbytesAuthorization keyYes

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: $long, bytes: 'bytes', );