MadelineProtoDocs/docs/API_docs/methods/account_saveSecureValue.md

1.2 KiB

title description image
account.saveSecureValue Save telegram passport secure value https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: account.saveSecureValue

Back to methods index

Save telegram passport secure value

Parameters:

Name Type Description Required
value InputSecureValue Encrypted value Yes
secure_secret_id long Secret Yes

Return type: SecureValue

Can bots use this method: YES

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();

$SecureValue = $MadelineProto->account->saveSecureValue(['value' => InputSecureValue, 'secure_secret_id' => long, ]);

Or, if you're into Lua:

SecureValue = account.saveSecureValue({value=InputSecureValue, secure_secret_id=long, })