mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-11-26 20:35:03 +01:00
23 lines
434 B
Markdown
23 lines
434 B
Markdown
---
|
|
title: getSelf
|
|
description: getSelf parameters, return type and example
|
|
redirect_from: /get_self.html
|
|
grand_parent: "Telegram RPC API"
|
|
parent: "Methods"
|
|
---
|
|
## Method: getSelf
|
|
|
|
Gets info about the currently logged-in user.
|
|
|
|
No parameters
|
|
|
|
### Return type: [User object](API_docs/types/User.html)
|
|
|
|
### Example ([now fully async!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
|
|
|
|
|
|
```php
|
|
$User = $MadelineProto->getSelf();
|
|
```
|
|
|