EpicAuth
  1. Displaying Data
EpicAuth
  • Overview
    • Security Pratices
    • Premade Examples - SDKS
    • QnA
    • Rate Limiting
  • Dashboard
    • Manage Applications
    • App
      • Licenses
      • Users
      • Tokens
      • Subscriptions
      • Chats
      • Sessions
      • Webhooks
      • Files
      • Global Variables
      • Logs
      • Blacklists
      • Whitelists
      • Audit Logs
      • Settings
    • Seller
      • Settings
      • Web Loader
      • Logs
    • Settings
      • Forms
      • Resellers | Manager
      • Settings
  • API
    • Getting Started
      • License
        • License Login
        • Redeem License (Upgrade)
      • Initialization
      • Login
      • Logout
      • Register
    • Features
      • Ban User
      • Check Blacklist
      • Check Session
      • Disable 2FA
      • Change Username
      • Download File
      • Enable 2FA
      • Fetch Online Users
      • Forgot Password
      • Fetch Stats
      • Log
      • Webhook
      • Retrieve Global Variable
    • Displaying Data
      • Displaying Data
  • Seller API
    • Application Settings
      • Add Application Hash
      • Edit Application Settings
      • Retrieve Application Details
      • Retrieve Current Application Settings
      • Retrieve Stats
      • Pause Application
      • Reset Application hash
      • Unpause Application
    • Blacklists
      • Create New Blacklist
      • Delete An Existing Blacklist
      • Delete All Blacklists
      • Retrieve All Blacklists
    • Chats
      • Create A New Chat Channel
      • Delete Channel Messages
      • Delete Existing Chat Channel
      • Edit Existing Chat Channel
      • Retrieve All Mutes
      • Retrieve All Chat Channels
      • Mute A User
      • Unmute A User
    • Files
      • Delete Existing File
      • Delete All Files
      • Retrieve All Existing Files
      • Retrieve An Existing File
      • Edit An Existing File
      • Upload A New File
  1. Displaying Data

Displaying Data

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:
INFO
All items are a string, so should only be displayed as one.
Username:
KeyAuthApp.user_data.username;
IP Address:
KeyAuthApp.user_data.ip;
Hardware-ID (HWID):
KeyAuthApp.user_data.hwid;
Created on:
UnixTimeToDateTime(long.Parse(KeyAuthApp.user_data.createdate));
INFO
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:
KeyAuthApp.app_data.version;
Customer Panel Link:
KeyAuthApp.app_data.customerPanelLink;
Download Link:
KeyAuthApp.app_data_downloadLink;
Number of Keys:
KeyAuthApp.app_data_numKeys;
Number of Users:
KeyAuthApp.app_data_numUsers;
Number of Online Users
KeyAuthApp.app_data_numOnlineUsers;
INFO
Displaying the number of online users will display the users that has a ACTIVE session.
Modified at 2025-06-02 21:55:23
Previous
Retrieve Global Variable
Next
Add Application Hash
Built with