Introduction
Prime Auth is an enterprise-grade developer cloud for software licensing, HWID protection, and secure user distribution.
HWID Locking
Anti-account sharing system
License Ledger
Immutable key issuance history
REST API
Cloud-native integration
Moderation
Instant bans and resets
Quickstart
Get started in minutes by creating your first application and integrating the SDK.
Create an Application
Log in to the dashboard and create your first app. You'll receive a unique App ID and Secret Key instantly.
Go to DashboardDownload SDK
Choose your preferred language and download our official SDK for instant integration.
Implement Authentication
Use our REST API or one of our native SDKs to authenticate users with HWID verification.
Official SDKs
Download production-ready client libraries for your preferred programming language.
Python
Full-featured SDK with automatic HWID generation and comprehensive error handling.
Node.js
Async/await SDK with native fetch support for modern JavaScript and TypeScript projects.
C++
High-performance native SDK with libcurl integration for desktop applications.
C#
Modern .NET SDK with async support for Windows desktop and Unity game projects.
Download the library for your preferred language.
Initialize the client using your App ID and Secret Key.
Implement HWID, Expiry, and Ban checks natively.
import requests
import hashlib
# 1. Initialize Credentials
APP_ID = "YOUR_APP_ID"
SECRET = "YOUR_SECRET_KEY"
API_BASE = "https://auth.meon.lol/api/v1"
def authenticate(username, password, hwid):
url = f"{API_BASE}/{APP_ID}/user/auth"
payload = {
"username": username,
"password": password,
"hwid": hwid,
"secretKey": SECRET
}
response = requests.post(url, json=payload)
data = response.json()
if data.get("success"):
print(f"Login successful! Expiry: {data['expiryDate']}")
return True
else:
print(f"Login failed: {data.get('error')}")
return FalseSecurity Best Practices
Never hardcode your Secret Key directly in the final distributed binary. Use a secure server-side proxy or obfuscate your client-side integration to prevent reverse engineering.
Infra Security Rules
Critical: Apply Firestore security rules to protect your user data and license ledger from unauthorized access.