Auth.GG
  • Welcome to Auth.GG!
  • C#
    • Initial Setup
    • Login
    • Register
    • Extend Subscription
    • User Information
    • Variables
    • Logs
  • Universal API
    • Application Information
    • Login
    • Register
    • Extend Subscription
    • Forgot Password
    • Change Password
    • Log
  • Admin API
    • Users
    • Licenses
    • HWID
  • FOR DEVELOPER
    • FAQ
Powered by GitBook
On this page

Was this helpful?

  1. C#

Variables

Variables make your program very secure and we highly recommend that you make use of them

The server sided variables store your strings server-sided. This makes it so your application can call them from the server after a successful login with one function. This is an exclusive feature to Auth.GG and it protects your strings from being decompiled and is a major security improvement.

Read our article on Forbes for more information.

Initial Setup:

C#
/* Argument in order: variable secret key */
/* Username and password is required as the user must be logged in to retrieve variables */
string variable1 = App.GrabVariable("PutVariableSecretHere");

All variables called from the GrabVariable method are returned as strings and must be converted back to their original data type by you (unless the variable is a string) e.g.

Convert.ToInt32(App.GrabVariable("putvariablesecrethere"));

PreviousUser InformationNextLogs

Last updated 5 years ago

Was this helpful?