2.1 KiB
2.1 KiB
title | description | image |
---|---|---|
initConnection | Initialize connection | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Method: initConnection
Initialize connection
Parameters:
Name | Type | Description | Required |
---|---|---|---|
api_id | int | Application identifier (see. App configuration) | Yes |
device_model | string | Device model | Yes |
system_version | string | Operation system version | Yes |
app_version | string | Application version | Yes |
system_lang_code | string | Code for the language used on the device's OS, ISO 639-1 standard | Yes |
lang_pack | string | Language pack to use | Yes |
lang_code | string | Code for the language used on the client, ISO 639-1 standard | Yes |
query | !X | The query itself | Yes |
Return type: X
Can bots use this method: YES
MadelineProto Example (now async for huge speed and parallelism!):
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();
$X = $MadelineProto->initConnection(['api_id' => int, 'device_model' => 'string', 'system_version' => 'string', 'app_version' => 'string', 'system_lang_code' => 'string', 'lang_pack' => 'string', 'lang_code' => 'string', 'query' => !X, ]);
Or, if you're into Lua:
X = initConnection({api_id=int, device_model='string', system_version='string', app_version='string', system_lang_code='string', lang_pack='string', lang_code='string', query=!X, })
Errors
Code | Type | Description |
---|---|---|
400 | CONNECTION_LAYER_INVALID | Layer invalid |
400 | INPUT_FETCH_FAIL | Failed deserializing TL payload |