get_logon_info.RdRetrieve login and client info of the authenticated session.
get_logon_info()
get_client_info(client_instanceid)get_logon_infoA 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_infoA dataframe with a single row containing information on package version, operating system and client details.
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)
} # }