MadelineProtoDocs/docs/API_docs/methods/auth.importLoginToken.md
2020-06-16 17:50:25 +02:00

1.5 KiB

title: auth.importLoginToken description: Login using a redirected login token, generated in case of DC mismatch during QR code login. For more info, see login via QR code. image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png redirect_from: /API_docs/methods/auth_importLoginToken.html

Method: auth.importLoginToken

Back to methods index

Login using a redirected login token, generated in case of DC mismatch during QR code login.

For more info, see login via QR code.

Parameters:

Name Type Description Required
token bytes Login token Yes

Return type: auth.LoginToken

Can bots use this method: NO

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.LoginToken = $MadelineProto->auth->importLoginToken(['token' => 'bytes', ]);

Or, if you're into Lua:

auth.LoginToken = auth.importLoginToken({token='bytes', })