Once a program is initialized and a user is logged in, you can display information about the application as well as the user. Below is a list of items that you can display:All items are a string, so should only be displayed as one.
Username:
EpicAuthApp.user_data.username;IP Address:
EpicAuthApp.user_data.ip;Hardware-ID (HWID):
EpicAuthApp.user_data.hwid;Created on:
UnixTimeToDateTime(long.Parse(EpicAuthApp.user_data.createdate));Please note that "UnixTimeToDateTime" is a function within the csharp example and may be different depending on the programming language that you are using for your application.
Application Version:
EpicAuthApp.app_data.version;Customer Panel Link:
EpicAuthApp.app_data.customerPanelLink;Download Link:
EpicAuthApp.app_data_downloadLink;Number of Keys:
EpicAuthApp.app_data_numKeys;Number of Users:
EpicAuthApp.app_data_numUsers;Number of Online Users
EpicAuthApp.app_data_numOnlineUsers; Displaying the number of online users will display the users that has a ACTIVE session.