MadelineProtoDocs/old_docs/API_docs_v102/methods/account_resetAuthorization.md
2019-06-24 15:45:02 +02:00

52 lines
1.2 KiB
Markdown

---
title: account.resetAuthorization
description: Delete a certain session
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Method: account.resetAuthorization
[Back to methods index](index.md)
Delete a certain session
### Parameters:
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
|hash|[long](../types/long.md) | The session hash, obtained from $MadelineProto->account->getAuthorizations | Yes|
### Return type: [Bool](../types/Bool.md)
### Can bots use this method: **NO**
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
```php
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->resetAuthorization(['hash' => long, ]);
```
Or, if you're into Lua:
```lua
Bool = account.resetAuthorization({hash=long, })
```
### Errors this method can return:
| Error | Description |
|----------|---------------|
|HASH_INVALID|The provided hash is invalid|