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!

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");
        }
    }
}

Last updated

Was this helpful?