-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatus.json
More file actions
86 lines (86 loc) · 2.48 KB
/
Copy pathstatus.json
File metadata and controls
86 lines (86 loc) · 2.48 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
[
{
"code": 200,
"label": "OK",
"type": "active",
"description": "The request succeeded and the page loaded normally."
},
{
"code": 301,
"label": "Moved Permanently",
"type": "redirect",
"description": "The URL has permanently moved to a new address."
},
{
"code": 302,
"label": "Found",
"type": "redirect",
"description": "The URL has temporarily moved to a new address."
},
{
"code": 400,
"label": "Bad Request",
"type": "inaccessible",
"description": "The server could not understand the request due to invalid syntax or formatting."
},
{
"code": 401,
"label": "Unauthorized",
"type": "inaccessible",
"description": "The requested resource requires authentication. The client must log in to access it."
},
{
"code": 403,
"label": "Forbidden",
"type": "inaccessible",
"description": "The server understood the request but refused to fulfill it. The client does not have permission to access this resource."
},
{
"code": 404,
"label": "Not Found",
"type": "inaccessible",
"description": "The server could not find the requested page or resource."
},
{
"code": 408,
"label": "Request Timeout",
"type": "inaccessible",
"description": "The server closed the connection because the request took too long to complete."
},
{
"code": 410,
"label": "Gone",
"type": "inaccessible",
"description": "The requested resource has been permanently removed and will not be available again."
},
{
"code": 429,
"label": "Too Many Requests",
"type": "inaccessible",
"description": "The client sent too many requests in a short period and the server is rate-limiting access."
},
{
"code": 500,
"label": "Internal Server Error",
"type": "inaccessible",
"description": "The server encountered an unexpected error and could not complete the request."
},
{
"code": 502,
"label": "Bad Gateway",
"type": "inaccessible",
"description": "The server received an invalid response from another server while processing the request."
},
{
"code": 503,
"label": "Service Unavailable",
"type": "inaccessible",
"description": "The server is temporarily unable to handle the request, often due to maintenance or overload."
},
{
"code": 999,
"label": "Request Denied",
"type": "inaccessible",
"description": "A non-standard code used by some sites to actively block automated or bot traffic."
}
]