2.9 KiB
2.9 KiB
title | description |
---|---|
initConnection | Initializes connection and save information on the user's device and application. |
Method: initConnection
Initializes connection and save information on the user's device and application.
Parameters:
Name | Type | Required | Description |
---|---|---|---|
api_id | CLICK ME int | Yes | Application identifier |
device_model | CLICK ME string | Yes | Device model |
system_version | CLICK ME string | Yes | System version |
app_version | CLICK ME string | Yes | App version |
system_lang_code | CLICK ME string | Yes | Language code |
lang_pack | CLICK ME string | Yes | Language pack to use |
lang_code | CLICK ME string | Yes | Language code to set |
query | CLICK ME !X | Yes | Nested query |
Return type: X
Can bots use this method: YES
Errors this method can return:
Error | Description |
---|---|
CONNECTION_LAYER_INVALID | Layer invalid |
INPUT_FETCH_FAIL | Failed deserializing TL payload |
MadelineProto Example:
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
// !!! This API id/API hash combination will not work !!!
// !!! You must get your own @ my.telegram.org !!!
$api_id = 0;
$api_hash = '';
$MadelineProto = new \danog\MadelineProto\API('session.madeline', ['app_info' => ['api_id' => $api_id, 'api_hash' => $api_hash]]);
$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, ]);
PWRTelegram HTTP API example (NOT FOR MadelineProto):
As a bot:
POST/GET to https://api.pwrtelegram.xyz/botTOKEN/madeline
Parameters:
- method - initConnection
- params -
{"api_id": int, "device_model": "string", "system_version": "string", "app_version": "string", "system_lang_code": "string", "lang_pack": "string", "lang_code": "string", "query": !X, }
As a user:
POST/GET to https://api.pwrtelegram.xyz/userTOKEN/initConnection
Parameters:
api_id - Json encoded int
device_model - Json encoded string
system_version - Json encoded string
app_version - Json encoded string
system_lang_code - Json encoded string
lang_pack - Json encoded string
lang_code - Json encoded string
query - Json encoded !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, })