46 lines
1.2 KiB
Markdown
46 lines
1.2 KiB
Markdown
|
---
|
||
|
title: account.saveSecureValue
|
||
|
description: Save telegram passport secure value
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Method: account.saveSecureValue
|
||
|
[Back to methods index](index.md)
|
||
|
|
||
|
|
||
|
Save telegram passport secure value
|
||
|
|
||
|
### Parameters:
|
||
|
|
||
|
| Name | Type | Description | Required |
|
||
|
|----------|---------------|-------------|----------|
|
||
|
|value|[InputSecureValue](../types/InputSecureValue.md) | Encrypted value | Yes|
|
||
|
|secure\_secret\_id|[long](../types/long.md) | Secret | Yes|
|
||
|
|
||
|
|
||
|
### Return type: [SecureValue](../types/SecureValue.md)
|
||
|
|
||
|
### Can bots use this method: **NO**
|
||
|
|
||
|
|
||
|
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
|
||
|
|
||
|
|
||
|
```php
|
||
|
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();
|
||
|
|
||
|
$SecureValue = $MadelineProto->account->saveSecureValue(['value' => InputSecureValue, 'secure_secret_id' => long, ]);
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
SecureValue = account.saveSecureValue({value=InputSecureValue, secure_secret_id=long, })
|
||
|
```
|
||
|
|