mirror of
https://github.com/zhigang1992/interfake.git
synced 2026-04-29 12:35:22 +08:00
52 lines
685 B
JSON
52 lines
685 B
JSON
[
|
|
{
|
|
"request": {
|
|
"url": "/books",
|
|
"method": "get"
|
|
},
|
|
"response": {
|
|
"code":200,
|
|
"body": {
|
|
"books": [{
|
|
"id":1,
|
|
"title":"The War of the Worlds"
|
|
}]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"request": {
|
|
"url": "/books",
|
|
"method": "post"
|
|
},
|
|
"response": {
|
|
"code":201,
|
|
"body": {}
|
|
},
|
|
"afterResponse": {
|
|
"endpoints": [
|
|
{
|
|
"request": {
|
|
"url": "/books",
|
|
"method": "get"
|
|
},
|
|
"response": {
|
|
"code":200,
|
|
"body": {
|
|
"books": [
|
|
{
|
|
"id":1,
|
|
"title":"The War of the Worlds"
|
|
},
|
|
{
|
|
"id":2,
|
|
"title":"Ender's Game"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
] |