Top "Json" questions

JSON (JavaScript Object Notation) is a serializable data interchange format intended to be machine and human readable.

What is "406-Not Acceptable Response" in HTTP?

In my Ruby on Rails application I tried to upload an image through the POSTMAN REST client in Base64 format. …

json rest http http-response-codes http-status-code-406
How do I consume the JSON POST data in an Express application

I'm sending the following JSON string to my server. ( { id = 1; name = foo; }, { id = 2; name = bar; } ) On the server I have …

json node.js express
Unexpected character encountered while parsing value

Currently I have some issues. I'm using C# with Json.NET. The issue is that I always get: {"Unexpected character …

c# json visual-studio-2013 json.net
How do you return a JSON object from a Java Servlet

How do you return a JSON object form a Java servlet. Previously when doing AJAX with a servlet I have …

java json servlets
Convert string to JSON array

I have the following string of a JSON from a web service and am trying to convert this to a …

java android json
How to escape double quotes in JSON

I'm trying to show double quotes but it shows one of the backslashes: "maingame": { "day1": { "text1": "Tag 1", "text2": "Heute startet …

json
Print JSON parsed object?

I've got a javascript object which has been JSON parsed using JSON.parse I now want to print the object …

javascript json parsing printing
Convert a JSON string to object in Java ME?

Is there a way in Java/J2ME to convert a string, such as: {name:"MyNode", width:200, height:100} to an …

java json java-me serialization
How to dynamically build a JSON object with Python?

I am new to Python and I am playing with JSON data. I would like to dynamically build a JSON …

python json
How to send a JSON object using html form data

So I've got this HTML form: <html> <head><title>test</title></…

javascript jquery html json forms