Daniel Hsing
full-stack javascript developer, high-school student
JavaScript Object Notation
{
"students": [
{
"name": "Daniel Hsing",
"age": 16, // :^)
"school": {
"id": 1,
"name": "Chinese International School",
"country": "Hong Kong"
}
}
]
}var students = [
{
name: "Daniel Hsing",
age: 16,
school: {
id: 1,
name: "Chinese International School",
country: "Hong Kong"
}
}
]JavaScript vs JSON
GET
POST
PUT
DELETE
Retrieve a resource
Create a resource
Update a resource
Remove a resource
Resources are denoted by different paths
Registering an API key
Rate Limiting
By Daniel Hsing