2016-12-19 19:20:07 +01:00
|
|
|
## Method: auth\_sendCode
|
2016-12-19 16:56:52 +01:00
|
|
|
|
|
|
|
### Parameters:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
|
|
|
|allow\_flashcall|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|phone\_number|[string](../types/string.md) | Required|
|
|
|
|
|current\_number|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|api\_id|[int](../types/int.md) | Required|
|
|
|
|
|api\_hash|[string](../types/string.md) | Required|
|
|
|
|
|
|
|
|
|
2016-12-19 18:35:27 +01:00
|
|
|
### Return type: [auth\_SentCode](../types/auth_SentCode.md)
|
2016-12-19 16:56:52 +01:00
|
|
|
|
|
|
|
### 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);
|
|
|
|
}
|
|
|
|
|
2016-12-19 19:20:07 +01:00
|
|
|
$auth_SentCode = $MadelineProto->auth_sendCode(['allow_flashcall' => Bool, 'phone_number' => string, 'current_number' => Bool, 'api_id' => int, 'api_hash' => string, ]);
|
2016-12-19 16:56:52 +01:00
|
|
|
```
|