
Remote Config
Pas spelinstellingen aan en schakel features live in of uit zonder een nieuwe app-release
Directe waarde-updates
Wijzig elke string-, numerieke of boolean-configuratiewaarde in het dashboard en clients ontvangen deze bij hun volgende fetch.
Geen App Store-vertragingen
Vermijd reviewcycli voor balanswijzigingen, event-toggles of A/B-testparameters door ze op afstand te beheren.
Getypte Key-Value Store
Sla elke configuratie op als een benoemd key-value paar dat uw SDK uitleest tijdens runtime met een sterk getypte getter.
Snelle Integratie
Remote Configuratie
// Unity C# - Remote Config
using HorizOn;
var horizon = new HorizonClient("YOUR_API_KEY");
// Fetch all remote configs
var configs = await horizon.RemoteConfig.GetAll();
foreach (var config in configs) {
Debug.Log($"{config.Key}: {config.Value}");
}
// Fetch a single config value by key
var value = await horizon.RemoteConfig.Get("max_players");
Debug.Log($"Max players: {value}");# REST API - Remote Config
# Fetch all remote configs
curl -X GET https://eu.horizon.pm/api/v1/app/remote-config/all \
-H "X-API-Key: YOUR_API_KEY"
# Fetch a single config value by key
curl -X GET https://eu.horizon.pm/api/v1/app/remote-config/max_players \
-H "X-API-Key: YOUR_API_KEY"Veelgestelde Vragen
Klaar om te integreren?
Begin vandaag nog met horizOn. Free Tier inbegrepen.

