mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 07:19:36 +01:00
991 B
991 B
title |
---|
auth_importBotAuthorization |
Method: auth_importBotAuthorization
Parameters:
Name | Type | Required |
---|---|---|
api_id | int | Required |
api_hash | string | Required |
bot_auth_token | string | Required |
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, ]);