MadelineProtoDocs/old_docs/API_docs_v81/methods/account_getTmpPassword.md
2018-07-12 20:24:55 +02:00

1.6 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 Required Description
password_hash bytes Yes The password hash
period int Yes The validity period

Return type: account_TmpPassword

Can bots use this method: NO

MadelineProto Example:

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_TmpPassword = $MadelineProto->account->getTmpPassword(['password_hash' => 'bytes', 'period' => int, ]);

PWRTelegram HTTP API example (NOT FOR MadelineProto):

As a user:

POST/GET to https://api.pwrtelegram.xyz/userTOKEN/account.getTmpPassword

Parameters:

password_hash - Json encoded bytes

period - Json encoded 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