MadelineProto/old_docs/API_docs_v68/methods/account_getPassword.md

61 lines
1.1 KiB
Markdown
Raw Normal View History

2017-07-23 17:44:01 +02:00
---
title: account.getPassword
description: Get the current password
2017-07-23 17:44:01 +02:00
---
## Method: account.getPassword
[Back to methods index](index.md)
Get the current password
### Parameters:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2017-07-23 17:44:01 +02:00
### Return type: [account\_Password](../types/account_Password.md)
2017-08-28 12:44:50 +02:00
### Can bots use this method: **NO**
2017-07-23 17:44:01 +02:00
### Example:
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
2017-07-23 17:44:01 +02:00
}
include 'madeline.php';
// !!! This API id/API hash combination will not work !!!
// !!! You must get your own @ my.telegram.org !!!
$api_id = 0;
$api_hash = '';
$MadelineProto = new \danog\MadelineProto\API('session.madeline', ['app_info' => ['api_id' => $api_id, 'api_hash' => $api_hash]]);
$MadelineProto->start();
2017-07-23 17:44:01 +02:00
$account_Password = $MadelineProto->account->getPassword();
```
2017-07-24 01:32:29 +02:00
Or, if you're using the [PWRTelegram HTTP API](https://pwrtelegram.xyz):
2017-07-23 17:44:01 +02:00
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.getPassword`
Parameters:
Or, if you're into Lua:
```
account_Password = account.getPassword({})
```