MadelineProto/docs/API_docs/methods/account_getTmpPassword.md

70 lines
1.6 KiB
Markdown
Raw Normal View History

---
title: account.getTmpPassword
description: Get temporary password for buying products through bots
---
## Method: account.getTmpPassword
[Back to methods index](index.md)
Get temporary password for buying products through bots
### Parameters:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2018-03-20 16:42:05 +01:00
|password\_hash|[CLICK ME bytes](../types/bytes.md) | Yes|The password hash|
|period|[CLICK ME int](../types/int.md) | Yes|The validity period|
### Return type: [account\_TmpPassword](../types/account_TmpPassword.md)
2017-08-28 12:44:50 +02:00
### Can bots use this method: **NO**
2017-11-03 17:39:50 +01:00
### Errors this method can return:
| Error | Description |
|----------|---------------|
|PASSWORD_HASH_INVALID|The provided password hash is invalid|
|TMP_PASSWORD_DISABLED|The temporary password is disabled|
2018-03-20 19:57:36 +01:00
### 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();
2017-07-23 16:33:46 +02:00
$account_TmpPassword = $MadelineProto->account->getTmpPassword(['password_hash' => 'bytes', 'period' => int, ]);
```
2018-03-20 19:57:36 +01:00
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
2017-07-23 16:11:02 +02:00
2017-07-23 16:34:36 +02:00
2017-07-23 16:11:02 +02:00
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.getTmpPassword`
Parameters:
password_hash - Json encoded bytes
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
period - Json encoded int
2017-07-23 16:40:54 +02:00
2017-07-23 16:11:02 +02:00
2017-08-20 19:09:52 +02:00
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
account_TmpPassword = account.getTmpPassword({password_hash='bytes', period=int, })
```