Scopo
La proprietà RefreshToken è usata dal sistema per recuperare un nuovo AccessToken quando quest'ultimo scade. È necessaria solo se si desidera inviare notifiche ad applicazioni di Chrome.
Insieme al RefreshToken occorre valorizzare anche le proprietà ClientID e ClientSecret.
Per sapere come ottenere questo valore, è possibile leggere il paragrafo "Configurazione sistema per notifiche su Chrome" nell'articolo del componente IDNotification.
Sintassi
IDNotification idn = new()
idn.refreshToken = "[ REFRESH TOKEN ]"
idn.refreshToken = "[ REFRESH TOKEN ]"
Esempio di codice
// ********************
// Sends a notification
// ********************
public void NewForm.SendNotification()
{
IDNotification idn = new()
idn.DNID = "[DEVICE NOTIFICATION ID]"
idn.title = "Title"
idn.message = "How are you?"
idn.payload = "[DATA SENT TO OFFLINE APP]"
idn.clientID = "[CLIENT ID]"
idn.clientSecret = "[CLIENT SECRET]"
idn.refreshToken = "[REFRESH TOKEN]"
//
idn.send()
}
// Sends a notification
// ********************
public void NewForm.SendNotification()
{
IDNotification idn = new()
idn.DNID = "[DEVICE NOTIFICATION ID]"
idn.title = "Title"
idn.message = "How are you?"
idn.payload = "[DATA SENT TO OFFLINE APP]"
idn.clientID = "[CLIENT ID]"
idn.clientSecret = "[CLIENT SECRET]"
idn.refreshToken = "[REFRESH TOKEN]"
//
idn.send()
}
Ultima modifica: 12/06/2024 / Validità: da 12.5.5400