MadelineProtoDocs/docs/get_self.md
2018-04-01 13:24:46 +02:00

410 B

title description
get_self get_self parameters, return type and example

Method: get_self

Gets info about the currently logged-in user.

No parameters

Return type: User object

Example:

$MadelineProto = new \danog\MadelineProto\API();
$MadelineProto->start();

$User = $MadelineProto->get_self();

Or, if you're into Lua:

User = get_self()