MadelineProtoDocs/docs/phoneLogin.md

38 lines
1.2 KiB
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
2020-01-05 17:55:38 +01:00
title: phoneLogin
description: phoneLogin parameters, return type and example
redirect_from: /phone_login.html
2018-04-01 13:19:25 +02:00
---
2020-01-05 17:55:38 +01:00
## Method: phoneLogin
2018-04-01 13:19:25 +02:00
### Parameters:
| Name | Type |
|----------|---------------|
|number| A string with the phone number, including the country code|
### Return type: [auth.SentCode](API_docs/types/auth_SentCode.md)
2019-10-29 22:23:35 +01:00
You must then use [completePhoneLogin](completePhoneLogin.md)
2018-04-01 13:19:25 +02:00
2019-06-01 18:08:28 +02:00
### Example ([now fully async!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
2018-04-01 13:19:25 +02:00
```php
2019-10-29 22:23:35 +01:00
yield $MadelineProto->phoneLogin(readline('Enter your phone number: '));
$authorization = yield $MadelineProto->completePhoneLogin(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') {
2020-01-05 17:55:38 +01:00
$authorization = yield $MadelineProto->complete2falogin(readline('Please enter your password (hint '.$authorization['hint'].'): '));
2018-04-01 13:19:25 +02:00
}
if ($authorization['_'] === 'account.needSignup') {
2019-10-29 22:23:35 +01:00
$authorization = yield $MadelineProto->completeSignup(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
```