-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsample.har
More file actions
33 lines (33 loc) · 936 Bytes
/
Copy pathsample.har
File metadata and controls
33 lines (33 loc) · 936 Bytes
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
{
"log": {
"version": "1.2",
"creator": {"name": "Sample", "version": "1.0"},
"entries": [{
"startedDateTime": "2024-01-15T10:00:00.000Z",
"time": 150,
"request": {
"method": "GET",
"url": "https://example.com/api/data",
"httpVersion": "HTTP/1.1",
"headers": [{"name": "Accept", "value": "application/json"}],
"queryString": [],
"cookies": [],
"headersSize": -1,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [{"name": "Content-Type", "value": "application/json"}],
"cookies": [],
"content": {"size": 27, "text": "{\"message\":\"Hello World\"}"},
"redirectURL": "",
"headersSize": -1,
"bodySize": 27
},
"cache": {},
"timings": {"send": 1, "wait": 100, "receive": 49}
}]
}
}