Unable to handle data from Json array
When using the http driver, I am able to connect to an API and process the Json data. For example:
{
"id": 60662,
"country": "NL",
"main": true
}
But when the data is returned in a Json array, the data cannot be parsed! For example, the folowing respons cannot be handled by Comfortclick:
[
{
"id": 60662,
"country": "NL",
"main": true
}
]
or
[
{
"id": 60662,
"country": "NL",
"main": true
},
{
"id": 906428
"country": "UK",
"main": false
}
]
When will support for Json array's be implemented? A lot of sites are returning Json data within an array nowedays.
Or is there an other workarround to process Json data within an array?


I was able to work around it using regex, but this was better. Thanks 👍
Anyone knows if websocket subscription is possible? It would enable many features in the API I'm exploring