Array of object does not working in JSON Formatter. #198
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Tested input:
[
{"message":"Hello"},
{"message":"This is test post request"},
{"message":"It's only for testing how the request body would looks on popup"},
{"message":"Did you know, that [buahahaha there is nothing there]"},
{"message":"Ok. That's all, have fun :3"}
]
Formater works if I wrapped array inside of JSON Object, so maybe that's the way to solve that problem.
{"array":[
{"message":"Hello"},
{"message":"This is test post request"},
{"message":"It's only for testing how the request body would looks on popup"},
{"message":"Did you know, that [buahahaha there is nothing there]"},
{"message":"Ok. That's all, have fun :3"}
]}
Fixed.