Logout #
Revokes the user's token & unsubscribes them from registered rooms.
Arguments #
Copied to clipboard!
public CompletableFuture<Response> logout()
throws NotConnectedException, InternalException
Return #
A Response object.
Usage #
Copied to clipboard!
Map<String, Object> credentials = new HashMap<>();
credentials.put("username", "foo");
credentials.put("password", "bar");
kuzzle.getAuthController().login("local", credentials).get();
kuzzle.getAuthController().logout();