MadelineProto/docs/TD_docs/methods/terminateAllOtherSessions.md

46 lines
916 B
Markdown
Raw Normal View History

---
title: terminateAllOtherSessions
description: Terminates all other sessions of logged in user
---
## Method: terminateAllOtherSessions
[Back to methods index](index.md)
Terminates all other sessions of logged in user
### Params:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
### Return type: [Ok](../types/Ok.md)
### Example:
```
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) {
$this->bot_login($token);
}
if (isset($number)) {
$sentCode = $MadelineProto->phone_login($number);
echo 'Enter the code you received: ';
$code = '';
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
$code .= fgetc(STDIN);
}
$MadelineProto->complete_phone_login($code);
}
$Ok = $MadelineProto->terminateAllOtherSessions();
```
Or, if you're into Lua:
```
Ok = terminateAllOtherSessions({})
```