1.3 KiB
1.3 KiB
title | description | image | redirect_from |
---|---|---|---|
auth.exportLoginToken | auth.exportLoginToken parameters, return type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/methods/auth_exportLoginToken.html |
Method: auth.exportLoginToken
Parameters:
Name | Type | Required |
---|---|---|
api_id | int | Yes |
api_hash | string | Yes |
except_ids | Array of int | Yes |
Return type: auth.LoginToken
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.LoginToken = $MadelineProto->auth->exportLoginToken(['api_id' => int, 'api_hash' => 'string', 'except_ids' => [int, int], ]);
Or, if you're into Lua:
auth.LoginToken = auth.exportLoginToken({api_id=int, api_hash='string', except_ids={int}, })