MadelineProto/docs/get_self.md

37 lines
658 B
Markdown
Raw Normal View History

2017-08-18 13:27:44 +02:00
---
title: get_self
description: get_self parameters, return type and example
---
## Method: get_self
2017-08-25 14:32:11 +02:00
### Return type: [User object](API_docs/types/User.md)
2017-08-18 13:27:44 +02:00
### 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);
}
$User = $MadelineProto->get_self();
```
Or, if you're into Lua:
```
User = get_self()
```