Feedback utente

Raccolga feedback in-game strutturato e segnalazioni di bug senza uscire dalla Sua applicazione

Inizia gratis

Categorie strutturate

Assegni una categoria a ogni invio cosi che bug, suggerimenti e feedback generico finiscano in code separate.

Contesto dispositivo automatico

Ogni report acquisisce opzionalmente modello del dispositivo e dettagli del sistema operativo per riprodurre piu velocemente i problemi specifici dell'hardware.

Follow-up diretto

I giocatori possono includere il loro indirizzo email cosi che il Suo team possa rispondere direttamente senza doverli cercare nei forum.

Integrazione rapida

Integrazione rapida

Invia feedback

Breve descrizione del problema...
Raccontaci cosa e successo. Piu dettagli fornisci, piu velocemente potremo aiutarti...
tua@email.com (opzionale)
Le informazioni del dispositivo verranno allegate automaticamente
C#
// Unity C# - User Feedback
using HorizOn;

var horizon = new HorizonClient("YOUR_API_KEY");

// Submit player feedback
await horizon.Feedback.Submit(new FeedbackRequest {
    UserId = userId,
    Title = "Amazing level design!",
    Message = "The new forest area is stunning.",
    Category = "content",
    Email = "player@example.com"
});

// Submit feedback with device info
await horizon.Feedback.Submit(new FeedbackRequest {
    UserId = userId,
    Title = "Bug report",
    Message = "Game crashes on level 5.",
    Category = "bug",
    DeviceInfo = SystemInfo.deviceModel
});
REST
# REST API - User Feedback

# Submit player feedback
curl -X POST https://eu.horizon.pm/api/v1/app/user-feedback/submit \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "userId": "USER_ID",
    "title": "Amazing level design!",
    "message": "The new forest area is stunning.",
    "category": "content",
    "email": "player@example.com"
  }'
Domande frequenti

Domande frequenti

Pronto per l'integrazione?

Inizi a costruire con horizOn oggi stesso. Tier gratuito incluso.