Skip to content

Instantly share code, notes, and snippets.

@inf0rmer
Last active August 29, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inf0rmer/4b00db3eaf14affba8e3 to your computer and use it in GitHub Desktop.
Save inf0rmer/4b00db3eaf14affba8e3 to your computer and use it in GitHub Desktop.
Well-known HTTP status codes and their meanings (abridged)
STATUSES = {
# ...
400 => 'Bad Request',
401 => 'Unauthorized',
402 => 'Payment Required',
403 => 'Forbidden',
404 => 'Resource Not Found',
405 => 'Method Not Allowed',
406 => 'Not Acceptable',
407 => 'Proxy Authentication Required',
408 => 'Request Timeout',
# ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment