-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.log
73 lines (65 loc) · 1.61 KB
/
server.log
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
[2024-11-25T07:10:05.029Z]
URL: /api/articles/readall
Method: GET
Payload: undefined
---------------------------------------------
[2024-11-25T07:16:08.577Z]
URL: /api/articles/create
Method: POST
Payload: {
"title": "My New Article",
"text": "This is a new article text.",
"date": 1699999999,
"author": "Jane Doe"
}
---------------------------------------------
[2024-11-25T07:18:31.413Z]
URL: /api/articles/update
Method: PATCH
Payload: {
"id": "2",
"title": "This is updated article title"
}
---------------------------------------------
[2024-11-25T07:23:42.854Z]
URL: /api/articles/update
Method: PATCH
Payload: {
"id": "36933c5a-7ace-4391-9eb3-958d1d1bf862",
"title": "My updated new article"
}
---------------------------------------------
[2024-11-25T07:25:26.742Z]
URL: /api/articles/delete
Method: DELETE
Payload: {
"id": "36933c5a-7ace-4391-9eb3-958d1d1bf862"
}
---------------------------------------------
[2024-11-25T07:30:59.298Z]
URL: /api/articles/create
Method: POST
Payload: {
"title": "My New Article 1",
"text": "This is a new article 1 text.",
"date": 1699999990,
"author": "John Doe"
}
---------------------------------------------
[2024-11-25T07:34:16.075Z]
URL: /api/comments/create
Method: POST
Payload: {
"articleId": "88b06852-f8f6-4541-bd10-a8ae1f77eae6",
"text": "This is a comment to my new article 1",
"date": "1732519859299",
"author": "John Doe"
}
---------------------------------------------
[2024-11-25T07:36:11.268Z]
URL: /api/comments/delete
Method: DELETE
Payload: {
"id": "ab0184b0-2981-43e6-adbf-2b830f0eb690"
}
---------------------------------------------