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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
module.exports = [{
code: "offline",
msg: "The Page is offline"
},
{
code: 400,
msg: "Bad Request"
},
{
code: 401,
msg: "Unauthorized"
},
{
code: 402,
msg: "Payment Required"
},
{
code: 403,
msg: "Forbidden"
},
{
code: 404,
msg: "Not Found"
},
{
code: 405,
msg: "Method Not Allowed"
},
{
code: 406,
msg: "Not Acceptable"
},
{
code: 407,
msg: "Proxy Authentication Required"
},
{
code: 408,
msg: "Request Timeout"
},
{
code: 409,
msg: "Conflict"
},
{
code: 410,
msg: "Gone"
},
{
code: 411,
msg: "Length Required"
},
{
code: 412,
msg: "Precondition Failed"
},
{
code: 413,
msg: "Payload Too Large"
},
{
code: 414,
msg: "URI Too Long"
},
{
code: 415,
msg: "Unsupported Media Type"
},
{
code: 416,
msg: "Range Not Satisfiable"
},
{
code: 417,
msg: "Expectation Failed"
},
{
code: 418,
msg: "I\"m a teapot"
},
{
code: 421,
msg: "Misdirected Request"
},
{
code: 422,
msg: "Unprocessable Entity"
},
{
code: 423,
msg: "Locked"
},
{
code: 424,
msg: "Failed Dependency"
},
{
code: 425,
msg: "Too Early"
},
{
code: 426,
msg: "Upgrade Required"
},
{
code: 428,
msg: "Precondition Required"
},
{
code: 429,
msg: "Too Many Requests"
},
{
code: 431,
msg: "Request Header Fields Too Large"
},
{
code: 451,
msg: "Unavailable For Legal Reasons"
}
]
|