GA

GoAuth

Admin access for licenses, sessions, and signed SDK responses.

GA

GoAuth

Authentication control

Local time zone

Detecting

Dashboard

Issue license keys, enforce HWID locking, and inspect active sessions.

Runtime

Signer key
Loading
Licenses
0
Active sessions
0

Verification contract

METHOD
PATH
TIMESTAMP
BODY_SHA256

License login flow

  1. Client submits a license key and hardware ID to /api/license/login.
  2. If HWID locking is enabled, the license binds on first login and is enforced after that.
  3. The API returns a session token for subsequent signed calls to /api/sdk/ping.

Operational notes

  • Revoking a license also ends its active sessions.
  • Session times are shown in your local browser time zone.
  • The discovery document is available at /.well-known/goauth.json.

Create license

Issue a new key for an SDK client or customer environment.

Issued licenses

Name Prefix HWID Last used Status

Current sessions

License HWID Device Network Last seen Status

Client login payload

POST /api/license/login
{
  "license_key": "glic_...",
  "hwid": "device-fingerprint",
  "device_name": "desktop-client"
}

Signed request usage

Authorization: Bearer session_token
GET /api/sdk/ping

Verify:
X-GoAuth-Signature
X-GoAuth-Timestamp
X-GoAuth-Body-SHA256