Skip to content

Instantly share code, notes, and snippets.

@fabriciocolombo
Forked from rponte/http_codes_family.md
Created September 26, 2012 11:51
Show Gist options
  • Save fabriciocolombo/3787589 to your computer and use it in GitHub Desktop.
Save fabriciocolombo/3787589 to your computer and use it in GitHub Desktop.
HTTP codes, we are family

HTTP codes, we are family

Above we have looked at just a few of the available HTTP codes; there are many others. Some are very well-known, such as 404 Not Found, but others are quite obscure and don't crop up very often. Whatever the case, the first digit is always an indication of the family of codes they belong to:

  • 1xx (Informational): Request received, continuing process.
  • 2xx (Successful): The action was successfully received, understood, and accepted.
  • 3xx (Redirection): Further action needs to be taken in order to complete the request.
  • 4xx (Client Error): The request contains bad syntax or cannot be fulfilled.
  • 5xx (Server Error): The server failed to fulfil an apparently valid request.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment