Advertisement
Russell

HTTP Status Codes

Feb 14th, 2015
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. == 1xx Informational ==
  2. 100 client should continue with request
  3. 101 server is switching protocols
  4. 102 server has received and is processing the request
  5. 103 resume aborted PUT or POST requests
  6. 122 URI is longer than a maximum of 2083 characters
  7.  
  8. == 2xx Success ==
  9. 200 standard response for successful HTTP requests
  10. 201 request has been fulfilled; new resource created
  11. 202 request accepted, processing pending
  12. 203 request processed, information may be from another source
  13. 204 request processed, no content returned
  14. 205 request processed, no content returned, reset document view
  15. 206 partial resource return due to request header
  16. 207 XML, can contain multiple separate responses
  17. 208 results previously returned
  18. 226 request fulfilled, reponse is instance-manipulations
  19.  
  20. == 3xx Redirection ==
  21. 300 multiple options for the resource delivered
  22. 301 this and all future requests directed to the given URI
  23. 302 temporary response to request found via alternative URI
  24. 303 permanent response to request found via alternative URI
  25. 304 resource has not been modified since last requested
  26. 305 content located elsewhere, retrieve from there
  27. 306 subsequent requests should use the specified proxy
  28. 307 connect again to different URI as provided
  29. 308 connect again to a different URI using the same method
  30.  
  31. == 4xx Client Error ==
  32. 400 request cannot be fulfilled due to bad syntax
  33. 401 authentication is possible but has failed
  34. 402 payment required, reserved for future use
  35. 403 server refuses to respond to request
  36. 404 requested resource could not be found
  37. 405 request method not supported by that resource
  38. 406 content not acceptable according to the Accept headers
  39. 407 client must first authenticate itself with the proxy
  40. 408 server timed out waiting for the request
  41. 409 request could not be processed because of conflict
  42. 410 resource is no longer available and will not be available again
  43. 411 request did not specify the length of its content
  44. 412 server does not meet request preconditions
  45. 413 request is larger than the server is willing or able to process
  46. 414 URI provided was too long for the server to process
  47. 415 server does not support media type
  48. 416 client has asked for unprovidable portion of the file
  49. 417 server cannot meet requirements of Expect request-header field
  50. 418 I'm a teapot
  51. 420 Twitter rate limiting
  52. 422 request unable to be followed due to semantic errors
  53. 423 resource that is being accessed is locked
  54. 424 request failed due to failure of a previous request
  55. 426 client should switch to a different protocol
  56. 428 origin server requires the request to be conditional
  57. 429 user has sent too many requests in a given amount of time
  58. 431 server is unwilling to process the request
  59. 444 server returns no information and closes the connection
  60. 449 request should be retried after performing action
  61. 450 Windows Parental Controls blocking access to web page
  62. 451 server cannot reach the client's mailbox
  63. 499 connection closed by client while HTTP server is processing
  64.  
  65. == 5xx Server Error ==
  66. 500 generic error message
  67. 501 server does not recognise method or lacks ability to fulfil
  68. 502 server received an invalid response from upstream server
  69. 503 server is currently unavailable
  70. 504 gateway did not receive response from upstream server
  71. 505 server does not support the HTTP protocol version
  72. 506 content negotiation for the request results in a circular reference
  73. 507 server is unable to store the representation
  74. 508 server detected an infinite loop while processing the request
  75. 509 bandwidth limit exceeded
  76. 510 further extensions to the request are required
  77. 511 client needs to authenticate to gain network access
  78. 598 network read timeout behind the proxy
  79. 599 network connect timeout behind the proxy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement