JSON: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. MTA uses JSON in a numb...)
 
No edit summary
Line 1: Line 1:
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.


MTA uses JSON in a number of places, most significantly it is used for communication over HTTP. See [[Resource Web Access]].
MTA uses JSON in a number of places, most significantly it is used for communication over HTTP. See [[Resource Web Access]]. You can encode JSON strings in the server using [[toJSON]] and decode them using [[fromJSON]].


For more general information about JSON, see http://www.json.org.
For more general information about JSON, see http://www.json.org.

Revision as of 01:35, 20 December 2007

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

MTA uses JSON in a number of places, most significantly it is used for communication over HTTP. See Resource Web Access. You can encode JSON strings in the server using toJSON and decode them using fromJSON.

For more general information about JSON, see http://www.json.org.