MadelineProtoDocs/docs/complete_signup.md

38 lines
1.3 KiB
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
title: complete_signup
description: complete_signup parameters, return type and example
---
## Method: complete_signup
### Parameters:
| Name | Type |
|----------|---------------|
|first_name| A string with the first name|
|last_name| Optional, string with the last name|
### Return type: [auth.Authorization](API_docs/types/auth_Authorization.md)
### Example:
```php
2019-06-01 17:42:45 +02:00
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->async(true);
2018-04-01 13:19:25 +02:00
2019-06-01 17:42:45 +02:00
[yield](ASYNC.html) $MadelineProto->phone_login(readline('Enter your phone number: '));
$authorization = [yield](ASYNC.html) $MadelineProto->complete_phone_login(readline('Enter the code you received: '));
2018-04-01 13:19:25 +02:00
if ($authorization['_'] === 'account.noPassword') {
throw new \danog\MadelineProto\Exception('2FA is enabled but no password is set!');
}
if ($authorization['_'] === 'account.password') {
2019-06-01 17:42:45 +02:00
$authorization = [yield](ASYNC.html) $MadelineProto->complete_2fa_login(readline('Please enter your password (hint '.$authorization['hint'].'): '));
2018-04-01 13:19:25 +02:00
}
if ($authorization['_'] === 'account.needSignup') {
2019-06-01 17:42:45 +02:00
$authorization = [yield](ASYNC.html) $MadelineProto->complete_signup(readline('Please enter your first name: '), readline('Please enter your last name (can be empty): '));
2018-04-01 13:19:25 +02:00
}
2019-06-01 17:42:45 +02:00
2018-04-01 13:19:25 +02:00
```