-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev-proxy.opencollection.json
More file actions
107 lines (107 loc) · 2.52 KB
/
Copy pathdev-proxy.opencollection.json
File metadata and controls
107 lines (107 loc) · 2.52 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"opencollection": "1.0.0",
"info": {
"name": "Microsoft Dev Proxy — Proxy API",
"version": "1.0.0"
},
"items": [
{
"info": {
"name": "Proxy",
"type": "folder"
},
"items": [
{
"info": {
"name": "Get Dev Proxy state",
"type": "http"
},
"http": {
"method": "GET",
"url": "http://localhost:8897/proxy"
},
"docs": "Returns information about the currently running Dev Proxy instance."
},
{
"info": {
"name": "Control Dev Proxy",
"type": "http"
},
"http": {
"method": "POST",
"url": "http://localhost:8897/proxy",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Start or stop request recording."
},
{
"info": {
"name": "Raise a mock request",
"type": "http"
},
"http": {
"method": "POST",
"url": "http://localhost:8897/proxy/mockrequest"
},
"docs": "Equivalent of pressing `w` in the Dev Proxy console."
},
{
"info": {
"name": "Download Dev Proxy root certificate (PEM)",
"type": "http"
},
"http": {
"method": "GET",
"url": "http://localhost:8897/proxy/rootCertificate",
"params": [
{
"name": "format",
"value": "",
"type": "query"
}
]
},
"docs": "Download Dev Proxy root certificate (PEM)"
},
{
"info": {
"name": "Gracefully shut down Dev Proxy",
"type": "http"
},
"http": {
"method": "POST",
"url": "http://localhost:8897/proxy/stopproxy"
},
"docs": "Gracefully shut down Dev Proxy"
}
]
},
{
"info": {
"name": "JWT",
"type": "folder"
},
"items": [
{
"info": {
"name": "Generate a JWT",
"type": "http"
},
"http": {
"method": "POST",
"url": "http://localhost:8897/proxy/jwtToken",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Generate a JWT"
}
]
}
],
"bundled": true
}