902 B
902 B
title | description | redirect_from |
---|---|---|
update2fa | Update 2FA password | /update_2fa.html |
Method: update2fa
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->update2fa(['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;
}
}