PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WEBDEV 2024 → parse json
parse json
Iniciado por Mister RUAN, 20,ago. 2016 20:35 - No hay respuesta
Miembro registrado
208 mensajes
Popularité : +1 (1 vote)
Publicado el 20,agosto 2016 - 20:35
Good Day

I am having endless problems adding data from a returned JSON into a table. To test I ran this:

cMyRequest is restRequest
cMyRequest..Method = httpGet
cMyRequest..URL = "https://outlook.office365.com/api/v1.0/me/calendarview?startdatetime=2016-05-10t01:00:00z&enddatetime=2016-05-20t23:00:00z"
cMyRequest..User = "Username"
cMyRequest..Password = "Password"
cMyResponse is restResponse = RESTSend(cMyRequest)

EDT_Text1 = cMyResponse..Content


This returned the data in EDT_Text1 in JSON Format. How ill I get this data into the correct table columns? i.e. Name: To my Name column, Message: To message column etc...

Thanks