Method: auth.importWebTokenAuthorization
Login by importing an authorization token
Parameters:
Name | Type | Description | Required |
---|---|---|---|
api_id | int | API ID | Optional |
api_hash | string | API hash | Optional |
web_auth_token | string | The authorization token | Optional |
Return type: auth.Authorization
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_Authorization = $MadelineProto->auth->importWebTokenAuthorization(api_id: $int, api_hash: 'string', web_auth_token: 'string', );