pimax\FbBotApp::userProfile PHP Метод

userProfile() публичный Метод

Get User Profile Info
public userProfile ( integer $id, string $fields = 'first_name,last_name,profile_pic,locale,timezone,gender' ) : UserProfile
$id integer
$fields string
Результат UserProfile
    public function userProfile($id, $fields = 'first_name,last_name,profile_pic,locale,timezone,gender')
    {
        return new UserProfile($this->call($id, ['fields' => $fields], self::TYPE_GET));
    }