RESTClient
RESTClient copied to clipboard
JSON Response Body Highlight is invalid in particular case
This JSON response body :
{
"result": {
"status": "done",
"expressions": [
{
"expression": "toto",
"length": 1
},
{
"expression": "titi",
"length": 2
}
]
}
}
Is render in "Response Body (Highlight)" tabs as :
{
"result": {
"status": "done",
"expressions": [
[
"toto",
1
],
[
"titi",
2
]
]
}
}
Thanks for reporting, I will fix this as soon as possible.
same issue here...
I know this is an old issue, but it's really annoying and dangerous when testing APIs
Our team just ran into the same bug (a nested object in an array, with a key named "length"), which cost us a lot of time trying to sort it out. Any chance we can get this fixed? As @rbarriuso notes, it's very dangerous when testing APIs. Thanks.