mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 00:39:38 +01:00
1.0 KiB
1.0 KiB
title | description |
---|---|
account.resetWebAuthorizations | Reset all telegram web login authorizations |
Method: account.resetWebAuthorizations
Reset all telegram web login authorizations
Return type: Bool
Can bots use this method: YES
MadelineProto Example:
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->account->resetWebAuthorizations();
PWRTelegram HTTP API example (NOT FOR MadelineProto):
As a bot:
POST/GET to https://api.pwrtelegram.xyz/botTOKEN/madeline
Parameters:
- method - account.resetWebAuthorizations
- params -
{}
As a user:
POST/GET to https://api.pwrtelegram.xyz/userTOKEN/account.resetWebAuthorizations
Parameters:
Or, if you're into Lua:
Bool = account.resetWebAuthorizations({})