1.3 KiB
1.3 KiB
title | description | image | redirect_from |
---|---|---|---|
account.setPassword | account.setPassword parameters, return type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/methods/account_setPassword.html |
Method: account.setPassword
Parameters:
Name | Type | Required |
---|---|---|
current_password_hash | bytes | Yes |
new_salt | bytes | Yes |
new_password_hash | bytes | Yes |
hint | string | Yes |
Return type: Bool
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();
$Bool = $MadelineProto->account->setPassword(['current_password_hash' => 'bytes', 'new_salt' => 'bytes', 'new_password_hash' => 'bytes', 'hint' => 'string', ]);
Or, if you're into Lua:
Bool = account.setPassword({current_password_hash='bytes', new_salt='bytes', new_password_hash='bytes', hint='string', })