MadelineProtoDocs/old_docs/API_docs_v66/methods/ping_delay_disconnect.md

1.3 KiB

title description image
ping_delay_disconnect Pings the server and causes disconection if the same method is not called within ping_disconnect_delay https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: ping_delay_disconnect

Back to methods index

Pings the server and causes disconection if the same method is not called within ping_disconnect_delay

Parameters:

Name Type Description Required
ping_id long Ping ID Yes
disconnect_delay int Disconection delay Yes

Return type: Pong

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

$Pong = $MadelineProto->ping_delay_disconnect(['ping_id' => long, 'disconnect_delay' => int, ]);

Or, if you're into Lua:

Pong = ping_delay_disconnect({ping_id=long, disconnect_delay=int, })