We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
there is some old bug that is probably irrelevant that keeps people from returning Arrays as top level objects in JSON APIs (on the web at least): http://stackoverflow.com/questions/3503102/what-are-top-level-json-arrays-and-why-are-they-a-security-risk
b'c of this I usually support newline delimited json and an array of objects, e.g.:
{"foo": "bar"} {"foo": "bar"}
or
{ "data": [ {"foo": "bar"}, {"foo": "bar"} ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
there is some old bug that is probably irrelevant that keeps people from returning Arrays as top level objects in JSON APIs (on the web at least): http://stackoverflow.com/questions/3503102/what-are-top-level-json-arrays-and-why-are-they-a-security-risk
b'c of this I usually support newline delimited json and an array of objects, e.g.:
or
The text was updated successfully, but these errors were encountered: