2016-12-30 16:32:25 +01:00
|
|
|
---
|
2017-01-02 19:50:37 +01:00
|
|
|
title: auth_importBotAuthorization
|
|
|
|
description: auth_importBotAuthorization parameters, return type and example
|
2016-12-30 16:32:25 +01:00
|
|
|
---
|
2017-01-02 19:50:37 +01:00
|
|
|
## Method: auth\_importBotAuthorization
|
2016-12-30 16:32:25 +01:00
|
|
|
[Back to methods index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Parameters:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
2017-01-02 19:50:37 +01:00
|
|
|
|api\_id|[int](../types/int.md) | Required|
|
|
|
|
|api\_hash|[string](../types/string.md) | Required|
|
|
|
|
|bot\_auth\_token|[string](../types/string.md) | Required|
|
2016-12-30 16:32:25 +01:00
|
|
|
|
|
|
|
|
2017-01-02 19:50:37 +01:00
|
|
|
### Return type: [auth\_Authorization](../types/auth_Authorization.md)
|
2016-12-30 16:32:25 +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);
|
|
|
|
}
|
|
|
|
|
2017-01-02 19:50:37 +01:00
|
|
|
$auth_Authorization = $MadelineProto->auth->importBotAuthorization(['api_id' => int, 'api_hash' => string, 'bot_auth_token' => string, ]);
|
2016-12-30 16:32:25 +01:00
|
|
|
```
|