mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-13 03:27:19 +01:00
33 lines
905 B
Markdown
33 lines
905 B
Markdown
## Method: account\_sendConfirmPhoneCode
|
|
|
|
### Parameters:
|
|
|
|
| Name | Type | Required |
|
|
|----------|:-------------:|---------:|
|
|
|allow\_flashcall|[Bool](../types/Bool.md) | Optional|
|
|
|hash|[string](../types/string.md) | Required|
|
|
|current\_number|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|
|
### Return type: [auth\_SentCode](../types/auth_SentCode.md)
|
|
|
|
### Example:
|
|
|
|
|
|
```
|
|
$MadelineProto = new \danog\MadelineProto\API();
|
|
if (isset($token)) {
|
|
$this->bot_login($token);
|
|
}
|
|
if (isset($number)) {
|
|
$sentCode = $MadelineProto->phone_login($number);
|
|
echo 'Enter the code you received: ';
|
|
$code = '';
|
|
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
|
|
$code .= fgetc(STDIN);
|
|
}
|
|
$MadelineProto->complete_phone_login($code);
|
|
}
|
|
|
|
$auth_SentCode = $MadelineProto->account_sendConfirmPhoneCode(['allow_flashcall' => Bool, 'hash' => string, 'current_number' => Bool, ]);
|
|
``` |