1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 Unknown = 0
19 Continue = 100
20 SwitchingProtocols = 101
21 OK = 200
22 Created = 201
23 Accepted = 202
24 NonAuthoritativeInformation = 203
25 NoContent = 204
26 ResetContent = 205
27 PartialContent = 206
28 MultipleChoices = 300
29 MovedPermanently = 301
30 Found = 302
31 SeeOther = 303
32 NotModified = 304
33 UseProxy = 305
34 TemporaryRedirect = 307
35 BadRequest = 400
36 Unauthorized = 401
37 PaymentRequired = 402
38 Forbidden = 403
39 NotFound = 404
40 MethodNotAllowed = 405
41 NotAcceptable = 406
42 ProxyAuthenticationRequired = 407
43 RequestTimeout = 408
44 Conflict = 409
45 Gone = 410
46 LengthRequired = 411
47 PreconditionFailed = 412
48 RequestEntityTooLarge = 413
49 RequestURITooLarge = 414
50 UnsupportedMediaType = 415
51 RequestedRangeNotSatisfiable = 416
52 ExpectationFailed = 417
53 InternalServerError = 500
54 NotImplemented = 501
55 BadGateway = 502
56 ServiceUnavailable = 503
57 GatewayTimeout = 504
58 HTTPVersionNotSupported = 505
59