MadelineProtoDocs/old_docs/API_docs_v66/methods/messages.getDhConfig.md

1.6 KiB

title description image redirect_from
messages.getDhConfig You cannot use this method directly, instead use $MadelineProto->getDhConfig(); https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/messages_getDhConfig.html

Method: messages.getDhConfig

Back to methods index

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

Parameters:

Name Type Description Required
version int You cannot use this method directly, instead use $MadelineProto->getDhConfig(); Yes
random_length int You cannot use this method directly, instead use $MadelineProto->getDhConfig(); Yes

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, ]);

Or, if you're into Lua:

messages.DhConfig = messages.getDhConfig({version=int, random_length=int, })

Errors

Code Type Description
400 RANDOM_LENGTH_INVALID Random length invalid