Link Search Menu Expand Document

Method: messages.getDhConfig

Back to methods index

You cannot use this method directly, instead use $MadelineProto->getDhConfig();

Parameters:

NameTypeDescriptionRequired
versionintValue of the version parameter from messages.dhConfig, available at the clientOptional
random_lengthintLength of the required random sequenceOptional

Return type: messages.DhConfig

Can bots use this method: NO

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();

$messages_DhConfig = $MadelineProto->messages->getDhConfig(version: $int, random_length: $int, );