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

1.0 KiB

title description image
help.acceptTermsOfService Accept telegram's TOS https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: help.acceptTermsOfService

Back to methods index

Accept telegram's TOS

Parameters:

Name Type Description Required
id DataJSON TOS Yes

Return type: Bool

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

$Bool = $MadelineProto->help->acceptTermsOfService(['id' => DataJSON, ]);

Or, if you're into Lua:

Bool = help.acceptTermsOfService({id=DataJSON, })