For AI agents: a documentation index is available at /llms.txt. A markdown version of this page is available at the same URL with .md appended (or via Accept: text/markdown).
Skip to main content

Logout user

Trigger logout flow. This function doesn't take any parameters. A completable future containing void object is returned on successfull logout otherwise an error response is returned.

Usage

void AYourGameMode::LogoutUser()
{
UWeb3AuthSDK::GetInstance()->Logout();
}

UFUNCTION()
void AYourGameMode::OnWeb3AuthLogout()
{
UE_LOG(LogTemp, Warning, TEXT("Web3Auth Logout Success"));
}
On this page