1.5 KiB
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
Get temporary password for buying products through bots
Parameters:
Name | Type | Description | Required |
---|---|---|---|
password | InputCheckPasswordSRP | Password | Yes |
period | int | The validity period | Yes |
Return type: account_TmpPassword
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_TmpPassword = $MadelineProto->account->getTmpPassword(['password' => InputCheckPasswordSRP, 'period' => int, ]);
Or, if you're into Lua:
account_TmpPassword = account.getTmpPassword({password=InputCheckPasswordSRP, 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 |