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๏
get_app_id() const |
|
get_error_message() const |
|
get_http_status() const |
|
get_jwt() const |
|
get_persona() const |
|
get_steam_id() const |
|
is_success() const |
Method Descriptions๏
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.
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.
Returns true when authentication succeeded.