873 B
873 B
title | description |
---|---|
update_2fa | Update 2FA password |
Method: update_2fa
The params array can contain password (current password), new_password, email (optional) and hint params.
Parameters:
Name | Type |
---|---|
params | An array of parameters |
Return type: Bool
Example (now fully async!):
try {
$MadelineProto->update_2fa(['password' => 'current password', 'new_password' => 'New password', 'email' => 'daniil@daniil.it', 'hint' => 'ponies']);
} catch (RPCErrorException $e) {
if (strpos($e->rpc, 'EMAIL_UNCONFIRMED_') !== false) {
$Bool = yield $MadelineProto->account->confirmPasswordEmail(['code' => yield $MadelineProto->readline('Enter your email code: ')]);
} else {
throw $e;
}
}