Retrieve login and client info of the authenticated session.

get_logon_info()

get_client_info(client_instanceid)

Arguments

client_instanceid

InstanceID of an authenticated session. Can be retrieved with get_login_info.

Value

get_logon_info

A dataframe where each row is an authenticated session. Contains columns on the client instanceID, protocol version, operating system, machine name, device type, and Steam realm.

get_client_info

A dataframe with a single row containing information on package version, operating system and client details.

Examples

if (FALSE) { # \dontrun{
# authentication needed
auth_qr()

# get info about the session
info <- get_logon_info()
client <- info$client_instanceid

# get details on an instanceid
get_client_info(client)
} # }