getCurrentUser #
Returns informations about the user currently loggued with the SDK instance.
Signature #
kuzzleio::User getCurrentkuzzleio::User();
Return #
A kuzzleio::User object.
Exceptions #
Throws a kuzzleio::KuzzleException
if there is an error. See how to handle error.
Usage #
try {
kuzzle->auth->login("local", R"({"username":"foo","password":"bar"})");
kuzzleio::User user = kuzzle->auth->getCurrentUser();
std::cout << "Successfully got current user" << std::endl;
} catch (kuzzleio::KuzzleException &e) {
std::cerr << e.what() << std::endl;
}
Edit this page on Github(opens new window)