$ curl
"http://192.168.10.43:8080/api.php/records/posts?join=comments,users&join=tags"
| python -mjson.tool
% Total % Received % Xferd
Average Speed Time
Time Time Current
Dload Upload Total
Spent Left Speed
100 594 100
594 0 0
23760 0 --:--:-- --:--:--
--:--:-- 23760
{
"records": [
{
"category_id": 1,
"comments": [
{
"category_id": 3,
"id": 1,
"message": "great",
"post_id": 1
},
{
"category_id": 3,
"id": 2,
"message": "fantastic",
"post_id": 1
}
],
"content": "blog started",
"id": 1,
"tags": [
{
"id": 1,
"is_important": false,
"name": "funny"
},
{
"id": 2,
"is_important": true,
"name": "important"
}
],
"user_id": 1
},
{
"category_id": 2,
"comments": [
{
"category_id": 3,
"id": 3,
"message": "thank you",
"post_id": 2
},
{
"category_id": 3,
"id": 4,
"message": "awesome",
"post_id": 2
}
],
"content": "It works!",
"id": 2,
"tags": [
{
"id": 1,
"is_important": false,
"name": "funny"
},
{
"id": 2,
"is_important": true,
"name": "important"
}
],
"user_id": 1
}
]
} |