MadelineProtoDocs/old_docs/API_docs_v82/methods/account_getTmpPassword.md
2019-05-04 12:15:39 +02:00

1.5 KiB

title description image
account.getTmpPassword Get temporary password for buying products through bots https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: account.getTmpPassword

Back to methods index

Get temporary password for buying products through bots

Parameters:

Name Type Description Required
password_hash bytes The password hash Yes
period int The validity period Yes

Return type: account_TmpPassword

Can bots use this method: NO

MadelineProto Example (now async!):

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
define('MADELINE_BRANCH', '');
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$account_TmpPassword = $MadelineProto->account->getTmpPassword(['password_hash' => 'bytes', 'period' => int, ]);

Or, if you're into Lua:

account_TmpPassword = account.getTmpPassword({password_hash='bytes', period=int, })

Errors this method can return:

Error Description
PASSWORD_HASH_INVALID The provided password hash is invalid
TMP_PASSWORD_DISABLED The temporary password is disabled