App-httpstatus-more

 view release on metacpan or  search on metacpan

script/httpstatus  view on Meta::CPAN

    307 => 'Temporary Redirect',
    308 => 'Permanent Redirect',              # RFC 7538
    400 => 'Bad Request',
    401 => 'Unauthorized',
    402 => 'Payment Required',
    403 => 'Forbidden',
    404 => 'Not Found',
    405 => 'Method Not Allowed',
    406 => 'Not Acceptable',
    407 => 'Proxy Authentication Required',
    408 => 'Request Timeout',
    409 => 'Conflict',
    410 => 'Gone',
    411 => 'Length Required',
    412 => 'Precondition Failed',
    413 => 'Request Entity Too Large',
    414 => 'Request-URI Too Large',
    415 => 'Unsupported Media Type',
    416 => 'Request Range Not Satisfiable',
    417 => 'Expectation Failed',
    418 => 'I\'m a teapot',                   # RFC 2324

script/httpstatus  view on Meta::CPAN

    497 => 'HTTP Request Sent to HTTPS Port (nginx)', # unofficial
    498 => 'Invalid Token (ArcGIS)',          # unofficial
    499 => [
        'Token Required (ArcGIS)',            # unofficial
        'Client Closed Request (nginx)',      # unofficial
    ],
    500 => 'Internal Server Error',
    501 => 'Not Implemented',
    502 => 'Bad Gateway',
    503 => 'Service Unavailable',
    504 => 'Gateway Timeout',
    505 => 'HTTP Version Not Supported',
    506 => 'Variant Also Negotiates',         # RFC 2295
    507 => 'Insufficient Storage',            # RFC 2518 (WebDAV)
    508 => 'Loop Detected',                   # RFC 5842 (WebDAV)
    509 => 'Bandwidth Limit Exceeded (Apache Web Server/cPanel)', # unofficial
    510 => 'Not Extended',                    # RFC 2774
    511 => 'Network Authentication Required', # RFC 6585
    520 => 'Unknown Error (Cloudfare)',       # unofficial
    521 => 'Web Server Is Down (Cloudfare)',  # unofficial
    522 => 'Connection Timed Out (Cloudfare)',# unofficial
    523 => 'Origin Is Unreachable (Cloudfare)', # unofficial
    524 => 'A Timeout Occurred (Cloudfare)',  # unofficial
    525 => 'SSL Handshake Failed (Cloudfare)',# unofficial
    526 => 'Invalid SSL Certificate (Cloudfare)', # unofficial
    527 => 'Railgun Error (Cloudfare)',       # unofficial
    530 => [
        'Site is frozen (Pantheon)',          # unofficial
        'Origin DNS Error (Cloudfare)',       # unofficial
    ],
    598 => 'Network read timeout error (unofficial)', # unofficial
);

script/httpstatus  view on Meta::CPAN

    # List 4xx status
    % httpstatus 4
    400 Bad Request
    401 Unauthorized
    402 Payment Required
    403 Forbidden
    404 Not Found
    405 Method Not Allowed
    406 Not Acceptable
    407 Proxy Authentication Required
    408 Request Timeout
    409 Conflict
    410 Gone
    411 Length Required
    412 Precondition Failed
    413 Request Entity Too Large
    414 Request-URI Too Large
    415 Unsupported Media Type
    416 Request Range Not Satisfiable
    417 Expectation Failed
    418 I'm a teapot

script/httpstatus  view on Meta::CPAN

    # List 40x status
    % httpstatus 40
    400 Bad Request
    401 Unauthorized
    402 Payment Required
    403 Forbidden
    404 Not Found
    405 Method Not Allowed
    406 Not Acceptable
    407 Proxy Authentication Required
    408 Request Timeout
    409 Conflict

    % httpstatus 500
    Internal Server Error

    % httpstatus 403
    Forbidden

    # grep status messages
    % httpstatus Bad



( run in 0.234 second using v1.01-cache-2.11-cpan-4d50c553e7e )