
즉시 값 업데이트
Dashboard에서 문자열, 숫자, 불리언 설정값을 변경하면 클라이언트가 다음 요청 시 최신 값을 받습니다.
앱 스토어 대기 시간 제로
밸런스 조정, 이벤트 토글, A/B 테스트 파라미터를 원격으로 제어하여 심사 주기를 건너뜁니다.
타입 지정 키-밸류 스토어
설정을 명명된 키-밸류 쌍으로 저장하고, SDK가 런타임에 타입 안전한 Getter로 읽어옵니다.
빠른 통합
원격 설정 관리
// 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"
