
Gebruikersbeheer
Volledige spelerauthenticatie en identiteitsbeheer voor uw game-backend
Multi-Auth-ondersteuning
E-mail, anonieme gastaccounts, Apple Sign-In en Google OAuth. Spelers kiezen zelf hoe zij zich willen aanmelden.
Rolgebaseerde toegang
Wijs rollen toe om te bepalen wat elke gebruiker mag doen. Ingebouwd admin- en spelersrollensysteem.
Cross-platform sessies
Spelers melden zich eenmaal aan en blijven naadloos geauthenticeerd op al hun apparaten.
App Store-compliance direct geregeld
horizOn User Management ondersteunt nu Sign in with Apple. Registreer je Team ID, Services ID en Bundle ID eenmalig. Je iOS-builds zijn meteen compliant.
Snelle Integratie
MyGame Auth
Welkom terug, speler
// Unity C# - User Authentication
using HorizOn;
var horizon = new HorizonClient("YOUR_API_KEY");
// Sign up with email
var result = await horizon.Auth.SignUpEmail(
"player@example.com", "securePassword", "PlayerOne"
);
// Sign in
var session = await horizon.Auth.SignInEmail(
"player@example.com", "securePassword"
);
// Anonymous sign up (guest account)
var guest = await horizon.Auth.SignUpAnonymous("GuestPlayer");# REST API - User Authentication
# Sign up with email
curl -X POST https://eu.horizon.pm/api/v1/app/user-management/signup \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"type":"EMAIL","email":"player@example.com","password":"securePassword","username":"PlayerOne"}'
# Sign in with email
curl -X POST https://eu.horizon.pm/api/v1/app/user-management/signin \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"type":"EMAIL","email":"player@example.com","password":"securePassword"}'
# Anonymous sign up (guest account)
curl -X POST https://eu.horizon.pm/api/v1/app/user-management/signup \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"type":"ANONYMOUS","username":"GuestPlayer"}'Veelgestelde Vragen
Klaar om te integreren?
Begin vandaag nog met horizOn. Free Tier inbegrepen.




