Link Search Menu Expand Document

Method: auth.exportAuthorization

Back to methods index

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

Parameters:

NameTypeDescriptionRequired
dc_idintNumber of a target data-centerOptional

Return type: auth.ExportedAuthorization

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_ExportedAuthorization = $MadelineProto->auth->exportAuthorization(dc_id: $int, );