719 B
719 B
title | description | image |
---|---|---|
Getting info about the current user | Here's how you can fetch info about the currently logged in user | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Getting info about the current user
Here's how you can fetch info about the currently logged in user
$me = $MadelineProto->get_self();
\danog\MadelineProto\Logger::log("Hi ".$me['first_name']."!");
get_self
returns a User object that contains info about the currently logged in user/bot, or false if the current instance is not logged in.