11export const responsesText : { [ key : string ] : string } = {
2+ "100" : "Continue" ,
3+ "101" : "Switching Protocols" ,
4+ "102" : "Processing" ,
5+ "103" : "Early Hints" ,
26 "200" : "OK" ,
37 "201" : "Created" ,
48 "202" : "Accepted" ,
9+ "203" : "Non-Authoritative Information" ,
510 "204" : "No Content" ,
11+ "205" : "Reset Content" ,
12+ "206" : "Partial Content" ,
13+ "207" : "Multi-Status" ,
14+ "208" : "Already Reported" ,
15+ "226" : "IM Used" ,
16+ "300" : "Multiple Choices" ,
17+ "301" : "Moved Permanently" ,
18+ "302" : "Found" ,
19+ "303" : "See Other" ,
20+ "304" : "Not Modified" ,
21+ "305" : "Use Proxy" ,
22+ "307" : "Temporary Redirect" ,
23+ "308" : "Permanent Redirect" ,
624 "400" : "Bad Request" ,
725 "401" : "Unauthorized" ,
26+ "402" : "Payment Required" ,
827 "403" : "Forbidden" ,
928 "404" : "Not Found" ,
1029 "405" : "Method Not Allowed" ,
30+ "406" : "Not Acceptable" ,
31+ "407" : "Proxy Authentication Required" ,
32+ "408" : "Request Timeout" ,
33+ "409" : "Conflict" ,
34+ "410" : "Gone" ,
35+ "411" : "Length Required" ,
36+ "412" : "Precondition Failed" ,
37+ "413" : "Payload Too Large" ,
38+ "414" : "URI Too Long" ,
39+ "415" : "Unsupported Media Type" ,
40+ "416" : "Range Not Satisfiable" ,
41+ "417" : "Expectation Failed" ,
42+ "418" : "I'm a teapot" ,
43+ "421" : "Misdirected Request" ,
1144 "422" : "Unprocessable Entity" ,
45+ "423" : "Locked" ,
46+ "424" : "Failed Dependency" ,
47+ "425" : "Too Early" ,
48+ "426" : "Upgrade Required" ,
49+ "428" : "Precondition Required" ,
1250 "429" : "Too Many Requests" ,
51+ "431" : "Request Header Fields Too Large" ,
52+ "451" : "Unavailable For Legal Reasons" ,
1353 "500" : "Internal Server Error" ,
54+ "501" : "Not Implemented" ,
55+ "502" : "Bad Gateway" ,
1456 "503" : "Service Unavailable" ,
15- }
57+ "504" : "Gateway Timeout" ,
58+ "505" : "HTTP Version Not Supported" ,
59+ "506" : "Variant Also Negotiates" ,
60+ "507" : "Insufficient Storage" ,
61+ "508" : "Loop Detected" ,
62+ "510" : "Not Extended" ,
63+ "511" : "Network Authentication Required"
64+ } ;
0 commit comments