Getting Started
Quickstart
Create an app, initialize the SDK, and authenticate your first user.
Steps
- Create an app in the dashboard and copy your credentials.
- Initialize to get a
session_id. - Authenticate (username/password, license key, or device).
Tip
If your app uses version whitelist + reminders,
Init() can return update info. Your SDK will show the prompt if configured.
C# Example
public static Auth AuthlyXApp = new Auth(
ownerId: "12345678",
appName: "HI",
version: "1.3",
secret: "your-secret"
);
// Optional:
// debug: false (disable SDK logs)
// api: "https://example.com/api/v2" (custom domain)
AuthlyXApp.Init();
AuthlyXApp.Login("username", "password");
HTTP Example
POST https://authly.cc/api/v2/init
{
"owner_id": "12345678",
"app_name": "HI",
"version": "1.3",
"secret": "your-secret",
"hash": "your-app-hash"
}