Hello,
I 'm having issue to get data from this JSON string (this is the value INSIDE Construct, with double double quote):
"{""saveinfo"":[{""date"":"""&Date.ToLocaleString(Date.Now)&"""},{""orugari"":"&SaveStateJSON&"]}"
What I did so far :
PARSE to JSON this string
and I am trying to get the value of "date" and "orugari" like that:
JSON.get("saveinfo.date") or JSON.get("saveinfo.orugari")
but both result are false (0)...
Any idea why I'm having no result ?
Thanks !