1.2 KiB
1.2 KiB
title | description |
---|---|
auth.importBotAuthorization | auth.importBotAuthorization parameters, return type and example |
Method: auth.importBotAuthorization
Parameters:
Name | Type | Required |
---|---|---|
api_id | int | Yes |
api_hash | string | Yes |
bot_auth_token | string | Yes |
Return type: auth_Authorization
Example:
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) {
$this->bot_login($token);
}
if (isset($number)) {
$sentCode = $MadelineProto->phone_login($number);
echo 'Enter the code you received: ';
$code = '';
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
$code .= fgetc(STDIN);
}
$MadelineProto->complete_phone_login($code);
}
$auth_Authorization = $MadelineProto->auth->importBotAuthorization(['api_id' => int, 'api_hash' => string, 'bot_auth_token' => string, ]);
Or, if you're into Lua:
auth_Authorization = auth.importBotAuthorization({api_id=int, api_hash=string, bot_auth_token=string, })