
Configuracion remota
Ajuste la configuracion del juego y active funcionalidades en vivo sin una nueva version de la app
Actualizaciones de valor instantaneas
Cambie cualquier valor de configuracion de tipo string, numerico o booleano desde el dashboard y los clientes lo recibiran en su proxima consulta.
Sin demoras del App Store
Evite los ciclos de revision para cambios de balance, toggles de eventos o parametros de A/B testing controlandolos de forma remota.
Almacen key-value tipado
Almacene cualquier configuracion como un par key-value con nombre que su SDK lee en tiempo de ejecucion con un getter tipado.
Integracion rapida
Configuracion remota
// 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"Preguntas frecuentes
Listo para integrar?
Empiece a construir con horizOn hoy. Nivel gratuito incluido.

