MadelineProtoDocs/old_docs/API_docs_v104/methods/auth_importAuthorization.md

54 lines
1.9 KiB
Markdown
Raw Normal View History

2019-08-15 20:25:16 +02:00
---
title: auth.importAuthorization
2019-10-29 22:23:35 +01:00
description: You cannot use this method directly, use $MadelineProto->importAuthorization($authorization) instead, see https://docs.madelineproto.xyz/docs/LOGIN.html
2019-08-15 20:25:16 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Method: auth.importAuthorization
[Back to methods index](index.md)
2019-10-29 22:23:35 +01:00
You cannot use this method directly, use $MadelineProto->importAuthorization($authorization) instead, see https://docs.madelineproto.xyz/docs/LOGIN.html
2019-08-15 20:25:16 +02:00
2019-09-02 17:41:28 +02:00
### Parameters:
2019-08-15 20:25:16 +02:00
2019-09-02 17:41:28 +02:00
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
2019-10-29 22:23:35 +01:00
|id|[int](../types/int.md) | You cannot use this method directly, use $MadelineProto->importAuthorization($authorization) instead, see https://docs.madelineproto.xyz/docs/LOGIN.html | Yes|
|bytes|[bytes](../types/bytes.md) | You cannot use this method directly, use $MadelineProto->importAuthorization($authorization) instead, see https://docs.madelineproto.xyz/docs/LOGIN.html | Yes|
2019-09-02 17:41:28 +02:00
### Return type: [auth\_Authorization](../types/auth_Authorization.md)
### Can bots use this method: **YES**
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
```php
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$auth_Authorization = $MadelineProto->auth->importAuthorization(['id' => int, 'bytes' => 'bytes', ]);
```
Or, if you're into Lua:
```lua
auth_Authorization = auth.importAuthorization({id=int, bytes='bytes', })
```
### Errors
| Code | Type | Description |
|------|----------|---------------|
|400|AUTH_BYTES_INVALID|The provided authorization is invalid|
|400|USER_ID_INVALID|The provided user ID is invalid|
2019-08-15 20:25:16 +02:00