mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-14 00:07:20 +01:00
1.5 KiB
1.5 KiB
title | description |
---|---|
account.resetWebAuthorization | Delete a certain telegram web login authorization |
Method: account.resetWebAuthorization
Delete a certain telegram web login authorization
Parameters:
Name | Type | Required | Description |
---|---|---|---|
hash | CLICK ME long | Yes | The authorization's hash |
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';
// !!! This API id/API hash combination will not work !!!
// !!! You must get your own @ my.telegram.org !!!
$api_id = 0;
$api_hash = '';
$MadelineProto = new \danog\MadelineProto\API('session.madeline', ['app_info' => ['api_id' => $api_id, 'api_hash' => $api_hash]]);
$MadelineProto->start();
$Bool = $MadelineProto->account->resetWebAuthorization(['hash' => long, ]);
PWRTelegram HTTP API example (NOT FOR MadelineProto):
As a bot:
POST/GET to https://api.pwrtelegram.xyz/botTOKEN/madeline
Parameters:
- method - account.resetWebAuthorization
- params -
{"hash": long, }
As a user:
POST/GET to https://api.pwrtelegram.xyz/userTOKEN/account.resetWebAuthorization
Parameters:
hash - Json encoded long
Or, if you're into Lua:
Bool = account.resetWebAuthorization({hash=long, })