989 B
989 B
title | description | image | redirect_from |
---|---|---|---|
account.getPassword | Obtain configuration for two-factor authorization with password | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/methods/account_getPassword.html |
Method: account.getPassword
Obtain configuration for two-factor authorization with password
Return type: account.Password
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();
$account.Password = $MadelineProto->account->getPassword();
Or, if you're into Lua:
account.Password = account.getPassword({})