MadelineProto/docs/API_docs/methods/account.sendConfirmPhoneCode.md

33 lines
906 B
Markdown
Raw Normal View History

## 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, ]);
```