2018-04-01 13:19:25 +02:00
|
|
|
---
|
2020-01-05 17:55:38 +01:00
|
|
|
title: getSelf
|
|
|
|
description: getSelf parameters, return type and example
|
|
|
|
redirect_from: /get_self.html
|
2018-04-01 13:19:25 +02:00
|
|
|
---
|
2020-01-05 17:55:38 +01:00
|
|
|
## Method: getSelf
|
2018-04-01 13:19:25 +02:00
|
|
|
|
|
|
|
Gets info about the currently logged-in user.
|
|
|
|
|
|
|
|
No parameters
|
|
|
|
|
|
|
|
### Return type: [User object](API_docs/types/User.md)
|
|
|
|
|
2019-06-01 18:08:28 +02:00
|
|
|
### Example ([now fully async!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
|
2018-04-01 13:19:25 +02:00
|
|
|
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```php
|
2019-10-29 22:23:35 +01:00
|
|
|
$User = yield $MadelineProto->getSelf();
|
2018-04-01 13:19:25 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```lua
|
2019-10-29 22:23:35 +01:00
|
|
|
User = getSelf()
|
2018-04-01 13:19:25 +02:00
|
|
|
```
|
|
|
|
|