Ticket Created
over 3 years ago

CIQQA-903

Processing JSON with missing root

The following (which is valid JSON) returns  INVALID_HTTP_BODY_IN_NETWORK_RESPONSE.

It's missing the root node but is still valid JSON. Missing the root node is fairy common. So, it should be able to be processed by IQ.

[
{
"name":"aaaa"
},
{
"name":"bbbb"
}
]

The following  is not missing the root node (and works).

 

{
"list" : [
{
"name":"aaaa"
},
{
"name":"bbbb"
}
]
}

Parents
  • The user is putting an empty string. There’s no way for them to input null. The app is free to do null stuff with an empty-string input.  

    Thus has nothing to do with what I’m talking about anyway. 

Comment
  • The user is putting an empty string. There’s no way for them to input null. The app is free to do null stuff with an empty-string input.  

    Thus has nothing to do with what I’m talking about anyway. 

Children
No Data