Konfigurasi Jarak Jauh

Konfigurasi Jarak Jauh

Sesuaikan pengaturan game dan aktifkan/nonaktifkan fitur secara live tanpa rilis aplikasi baru

Mulai Gratis

Update Nilai Instan

Ubah nilai konfigurasi string, angka, atau boolean apa pun dari dashboard dan klien menerimanya pada fetch berikutnya.

Tanpa Penundaan App Store

Hindari siklus review untuk perubahan keseimbangan, toggle event, atau parameter A/B Test dengan mengontrolnya secara remote.

Key-Value Store Bertipe

Simpan konfigurasi apa pun sebagai pasangan key-value bernama yang dibaca SDK Anda saat runtime dengan getter bertipe kuat.

Integrasi Cepat

Integrasi Cepat

Konfigurasi Remote

C#
// 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
# 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"
Pertanyaan yang Sering Diajukan

Pertanyaan yang Sering Diajukan

Siap untuk Integrasi?

Mulai membangun dengan horizOn hari ini. Paket gratis tersedia.