Initial Setup

Please make your program and obtain the most recent files from the panel's resource center before configuring StackWorkShop Auth.

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

You will need to have your program secret, AID, ActivateKey, and JWT Token at hand

Initial Connection (Program.cs File):

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

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

Last updated