Parsing GET Request Results into Table Format for JSON Data
Can’t figure this one out… A GET request returns a list of things. I want the children of those elements in separate rows.. I.e.
{
"results":
[
"0": {
"key1": "value1",
"key2": "value2",
},
"1": {
"key1": "value1",
"key2": "value2",
},
...
"n": {
"key1": "value1",
"key2": "value2",
}
]
}
should be parsed as: col1 | col2 | col3 HTTP request. | key1 | key2 JSON response | 0.value1 | 0.value2 JSON response | 1.value1 | 1.value2 JSON response | n.value1 | n.value2