29 lines
410 B
Markdown
29 lines
410 B
Markdown
|
---
|
||
|
title: get_self
|
||
|
description: get_self parameters, return type and example
|
||
|
---
|
||
|
## Method: get_self
|
||
|
|
||
|
Gets info about the currently logged-in user.
|
||
|
|
||
|
No parameters
|
||
|
|
||
|
### Return type: [User object](API_docs/types/User.md)
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
|
||
|
```
|
||
|
$MadelineProto = new \danog\MadelineProto\API();
|
||
|
$MadelineProto->start();
|
||
|
|
||
|
$User = $MadelineProto->get_self();
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```
|
||
|
User = get_self()
|
||
|
```
|
||
|
|