MadelineProtoDocs/docs/completeSignup.md

1.2 KiB

title description redirect_from
completeSignup completeSignup parameters, return type and example /complete_signup.html

Method: completeSignup

Parameters:

Name Type
first_name A string with the first name
last_name Optional, string with the last name

Return type: auth.Authorization

Example (now fully async!):

yield $MadelineProto->phoneLogin(readline('Enter your phone number: '));
$authorization = yield $MadelineProto->completePhoneLogin(readline('Enter the code you received: '));
if ($authorization['_'] === 'account.noPassword') {
    throw new \danog\MadelineProto\Exception('2FA is enabled but no password is set!');
}
if ($authorization['_'] === 'account.password') {
    $authorization = yield $MadelineProto->complete2falogin(readline('Please enter your password (hint '.$authorization['hint'].'): '));
}
if ($authorization['_'] === 'account.needSignup') {
    $authorization = yield $MadelineProto->completeSignup(readline('Please enter your first name: '), readline('Please enter your last name (can be empty): '));
}