C++ APISession methods
logout
Clears the current authorization context while keeping the session connected.
logout() clears the current session authorization context and returns
blaze::status.
Function variants
blaze::status logout();
blaze::status logout(std::error_code& ec) noexcept;
void async_logout(std::function<void(std::error_code, blaze::status)> callback);
blaze::coro::awaitable_result<blaze::status> co_logout();Status vs error
The returned blaze::status is the API result. std::error_code and
std::system_error are used for transport/runtime failures only.
Result
blaze::statusUse direct comparison, for example:
if (status == blaze::status::ok) {
// success
}Behavior notes
- Call
logoutonly after successfulconnectandinitialize. logoutworks only when the session currently has an authorization context.logoutcan clear a session authorized either by license or by account credentials.- If the session is not currently authorized, the operation returns
blaze::status::not_authorized. - A successful
logoutkeeps the websocket connected and the session initialized. - After successful
logout, protected operations require a newauthorize(...)call.
Example
Compilation note
Synchronous and Asynchronous examples compile in the same form from C++14
to C++26.
#include "blazeauth/api/api.hpp"
#include <iostream>
#include <string>
#include <system_error>
void print_error_code(const std::string& context, const std::error_code& ec) {
std::cout << context << ": " << ec.message() << " ("
<< ec.value() << " : " << ec.category().name() << ")\n";
}
std::string read_line(const std::string& label) {
std::string value;
std::cout << label << ": ";
std::getline(std::cin, value);
return value;
}
void print_status(const std::string& context, blaze::status status) {
std::cout << context << ": "
<< static_cast<unsigned int>(status)
<< " (" << blaze::to_string(status) << ")\n";
}
int main() {
const std::string websocket_api_key = read_line("Websocket API key");
const std::string client_id = read_line("Client ID");
const std::string license_key = read_line("License");
blaze::session session;
try {
const blaze::api_server server = session.connect();
std::cout << "Connected to server location: " << server.location << '\n';
const blaze::application app = session.initialize(websocket_api_key, client_id);
if (!app.good()) {
print_status("Initialize returned status", app.status);
return 1;
}
const blaze::license license = session.authorize(license_key);
if (!license.good()) {
print_status("Authorize returned status", license.status);
return 1;
}
const blaze::status logout_status = session.logout();
if (logout_status != blaze::status::ok) {
print_status("Logout returned status", logout_status);
return 1;
}
std::cout << "Logged out successfully\n";
session.shutdown();
} catch (const std::system_error& e) {
print_error_code("Logout failed", e.code());
return 1;
}
return 0;
}#include "blazeauth/api/api.hpp"
#include <future>
#include <iostream>
#include <string>
#include <system_error>
void print_error_code(const std::string& context, const std::error_code& ec) {
std::cout << context << ": " << ec.message() << " ("
<< ec.value() << " : " << ec.category().name() << ")\n";
}
std::string read_line(const std::string& label) {
std::string value;
std::cout << label << ": ";
std::getline(std::cin, value);
return value;
}
void print_status(const std::string& context, blaze::status status) {
std::cout << context << ": "
<< static_cast<unsigned int>(status)
<< " (" << blaze::to_string(status) << ")\n";
}
int main() {
const std::string websocket_api_key = read_line("Websocket API key");
const std::string client_id = read_line("Client ID");
const std::string license_key = read_line("License");
blaze::session session;
std::promise<int> completion;
std::future<int> result = completion.get_future();
session.async_connect(
[&session, &completion, websocket_api_key, client_id, license_key](std::error_code connect_ec, blaze::api_server server) {
if (connect_ec) {
print_error_code("Connect failed", connect_ec);
completion.set_value(1);
return;
}
std::cout << "Connected to server location: " << server.location << '\n';
session.async_initialize(websocket_api_key, client_id,
[&session, &completion, license_key](std::error_code init_ec, blaze::application app) {
if (init_ec) {
print_error_code("Initialize failed", init_ec);
completion.set_value(1);
return;
}
if (!app.good()) {
print_status("Initialize returned status", app.status);
completion.set_value(1);
return;
}
session.async_authorize(license_key,
[&session, &completion](std::error_code auth_ec, blaze::license license) {
if (auth_ec) {
print_error_code("Authorize failed", auth_ec);
completion.set_value(1);
return;
}
if (!license.good()) {
print_status("Authorize returned status", license.status);
completion.set_value(1);
return;
}
session.async_logout([&session, &completion](std::error_code logout_ec, blaze::status logout_status) {
if (logout_ec) {
print_error_code("Logout failed", logout_ec);
completion.set_value(1);
return;
}
if (logout_status != blaze::status::ok) {
print_status("Logout returned status", logout_status);
completion.set_value(1);
return;
}
std::cout << "Logged out successfully\n";
session.async_shutdown([&completion](std::error_code shutdown_ec) {
if (shutdown_ec) {
print_error_code("Shutdown failed", shutdown_ec);
completion.set_value(1);
return;
}
completion.set_value(0);
});
});
});
});
});
return result.get();
}Project must be built with C++20 support and with coroutine support available both in the language mode and in the standard library implementation for this example to compile correctly.
#include "blazeauth/api/api.hpp"
#include <future>
#include <iostream>
#include <string>
#include <system_error>
void print_error_code(const std::string& context, const std::error_code& ec) {
std::cout << context << ": " << ec.message() << " ("
<< ec.value() << " : " << ec.category().name() << ")\n";
}
std::string read_line(const std::string& label) {
std::string value;
std::cout << label << ": ";
std::getline(std::cin, value);
return value;
}
#if BLAZEAUTH_HAS_COROUTINES
blaze::coro::task<std::error_code> run_example(
blaze::session& session,
const std::string& websocket_api_key,
const std::string& client_id,
const std::string& license_key
) {
const auto [connect_ec, server] = co_await session.co_connect();
if (connect_ec) {
co_return connect_ec;
}
std::cout << "Connected to server location: " << server.location << '\n';
const auto [init_ec, app] = co_await session.co_initialize(websocket_api_key, client_id);
if (init_ec) {
co_return init_ec;
}
if (!app.good()) {
co_return blaze::make_error_code(app.status);
}
const auto [auth_ec, license] = co_await session.co_authorize(license_key);
if (auth_ec) {
co_return auth_ec;
}
if (!license.good()) {
co_return blaze::make_error_code(license.status);
}
const auto [logout_ec, logout_status] = co_await session.co_logout();
if (logout_ec) {
co_return logout_ec;
}
if (logout_status != blaze::status::ok) {
co_return blaze::make_error_code(logout_status);
}
std::cout << "Logged out successfully\n";
const auto [shutdown_ec] = co_await session.co_shutdown();
co_return shutdown_ec;
}
int main() {
const std::string websocket_api_key = read_line("Websocket API key");
const std::string client_id = read_line("Client ID");
const std::string license_key = read_line("License");
blaze::session session;
std::promise<std::error_code> completion;
std::future<std::error_code> result = completion.get_future();
blaze::coro::co_spawn([&session, &completion, websocket_api_key, client_id, license_key]() -> blaze::coro::task<void> {
const std::error_code ec = co_await run_example(session, websocket_api_key, client_id, license_key);
completion.set_value(ec);
co_return;
}());
const std::error_code ec = result.get();
if (ec) {
print_error_code("Logout failed", ec);
return 1;
}
return 0;
}
#else
int main() {
std::cout << "This example requires coroutine support in the Blazeauth library build.\n";
return 0;
}
#endifLogout statuses
| Value | Status | Returned when |
|---|---|---|
1 | ok | Logout completed successfully. |
3 | not_authorized | Session is not currently authorized. |
Connection-level shutdowns
Normal logout results are returned as
blaze::status. The websocket may still be closed by session-level guards:
| Close code | Meaning | When it can happen |
|---|---|---|
4200 | not_initialized | logout was called before a successful initialize. |
4201 | rate_limited | Session or IP rate limiting closed the websocket around this operation. |