-
Notifications
You must be signed in to change notification settings - Fork 0
Passaggio tra messaggi
Paolo Fisco edited this page Oct 8, 2016
·
4 revisions
Per passare da un messaggio ad un altro bisogna aggiungere i button di callback. Ogni tasto usa la descrizione Text e il link per il prossimo messaggio ID. E' possibile inviare più messaggi utilizzando la proprietà IDNEXT
{
"ID":"HOME",
"Text":"Benvenuto nel Menu del BOT",
"Button":[
{"Text":"Info BOT","ID":"INFO"}
]
}
{
"ID":"INFO",
"IDNEXT":"INFO2",
"Text":"MESSAGGIO 1"
}
{
"ID":"INFO2",
"Text":"BOT DEMO",
"Button":[
{"Text":"Menu precedente","ID":"HOME"}
]
}