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#

Initial Setup

Before setting up Auth.GG please first create your program and download the latest files which can be found in the panel's resource center.

You must add the API.cs file to your program!

You will need to have your program secret and AID at hand

Initial Connection (Your own form/console):

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;

namespace AuthGG
{
    class Program
    {
        static void Main(string[] args)
        {
            OnProgramStart.Initialize("APPNAME", "AID", "PROGRAMSECRET", "VERSION");
        }
    }
}

PreviousWelcome to Auth.GG!NextLogin

Last updated 4 years ago

Was this helpful?