JSON
- JSON is a standard way to format data
- Similar to JavaScript object initialization format
- Probably the most common server messaging format these days
- Send a request with some JSON data and get JSON data in response
{
"name": "Ryan",
"age": 28,
"isProfessor": true
}
12 / 21