1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"Authorizations": [],
"ServiceItems": [
{
"ApiName": "weibo",
"BaseUrl": "https://weibo.com/ajax",
"ApiItems": [
{
"Method": "hot",
"Url": "/side/hotSearch",
"HttpMethod": "GET",
"ParamType": "query"
}
]
},
{
"ApiName": "JP",
"BaseUrl": "https://jsonplaceholder.typicode.com",
"ApiItems": [
{
"Method": "get",
"Url": "/posts/{post_id}",
"HttpMethod": "GET",
"ParamType": "path"
},
{
"Method": "list",
"Url": "/posts",
"HttpMethod": "GET",
"ParamType": "none"
},
{
"Method": "create",
"Url": "/posts",
"HttpMethod": "POST",
"ParamType": "json"
},
{
"Method": "update",
"Url": "/posts/{post_id}",
"HttpMethod": "PUT",
"ParamType": "path,json"
},
{
"Method": "patch",
"Url": "/posts/{post_id}",
"HttpMethod": "PATCH",
"ParamType": "path,json"
},
{
"Method": "delete",
"Url": "/posts/{post_id}",
"HttpMethod": "DELETE",
"ParamType": "path"
},
{
"Method": "filter",
"Url": "/posts",
"HttpMethod": "GET",
"ParamType": "query"
}
]
}
]
}