Link Search Menu Expand Document

Method: initConnection

Back to methods index

Initialize connection

Parameters:

NameTypeDescriptionRequired
api_idintApplication identifier (see. App configuration)Optional
device_modelstringDevice modelYes
system_versionstringOperation system versionYes
app_versionstringApplication versionYes
system_lang_codestringCode for the language used on the device’s OS, ISO 639-1 standardYes
lang_packstringLanguage pack to useYes
lang_codestringCode for the language used on the client, ISO 639-1 standardYes
proxyInputClientProxyInfo about an MTProto proxyOptional
paramsJSONValueAdditional initConnection parameters.
For now, only the tz_offset field is supported, for specifying timezone offset in seconds.
Optional
query!XThe query itselfYes

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', proxy: InputClientProxy, params: JSONValue, query: !X, );