829 B
829 B
title | description | image |
---|---|---|
help.getAppConfig | Get app config | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Method: help.getAppConfig
Get app config
Return type: JSONValue
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');
}
define('MADELINE_BRANCH', '');
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$JSONValue = $MadelineProto->help->getAppConfig();
Or, if you're into Lua:
JSONValue = help.getAppConfig({})