I have some json that i get from a website using the http connector, i then parse the json but getting an error
"Invalid type. Expected Integer but got Null."
I have check and the json below gets returned as valid and when i enter it as a sample for the parse JSON it does not throw the error, but when the flow runs it errors out, any idea what they below is throwing an error;
[
{
"kind":"special",
"data":{
"after":null,
"dist":1,
"geo_filter":"",
"children":[
{
"kind":"t3",
"data":{
"saved":false,
"is_video":false
}
}
],
"now":null
}
},
{
"kind":"special",
"data":{
"after":null,
"dist":null,
"geo_filter":"",
"children":[
{
"kind":"t1",
"data":{
"collapsed":false,
"body":"1-0",
"ups":1
}
},
{
"kind":"t1",
"data":{
"collapsed":false,
"body":"0-4",
"ups":1
}
}
],
"now":null
}
}
]