SteamAuthResult๏ƒ

Inherits: RefCounted < Object

Result of a Steam auth server exchange.

Description๏ƒ

Returned by Steam.authenticate_with_server(). Contains the JWT and user metadata on success, or an error message on failure.

Methods๏ƒ

int

get_app_id() const

String

get_error_message() const

int

get_http_status() const

String

get_jwt() const

String

get_persona() const

String

get_steam_id() const

bool

is_success() const


Method Descriptions๏ƒ

int get_app_id() const ๐Ÿ”—

Returns the validated Steam app ID.


String get_error_message() const ๐Ÿ”—

Returns the error message when is_success() is false.


int get_http_status() const ๐Ÿ”—

Returns the HTTP status code from the auth server response.


String get_jwt() const ๐Ÿ”—

Returns the JWT issued by the auth server.


String get_persona() const ๐Ÿ”—

Returns the validated Steam persona name.


String get_steam_id() const ๐Ÿ”—

Returns the validated 64-bit Steam ID as a string.


bool is_success() const ๐Ÿ”—

Returns true when authentication succeeded.