SDK
SDK C++ v1.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

This SDK has been deprecated because of stability issues. It is not advised to use it in a production environment.

getCurrentUser #

Returns informations about the user currently loggued with the SDK instance.

Signature #

Copied to clipboard!
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 #

Copied to clipboard!
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;
}