MadelineProtoDocs/old_docs/API_docs_v100/methods/help_getProxyData.md
2019-06-30 15:12:21 +02:00

868 B

title description image
help.getProxyData Get information about the current proxy https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: help.getProxyData

Back to methods index

Get information about the current proxy

Return type: help_ProxyData

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

$help_ProxyData = $MadelineProto->help->getProxyData();

Or, if you're into Lua:

help_ProxyData = help.getProxyData({})