http请求方法和状态码

来源:互联网 发布:人工智能技术瓶颈 编辑:程序博客网 时间:2024/06/05 05:35

1 1xx消息,表示请求已被接受,需要继续处理
2 2xx请求成功,表示请求已成功被服务器接收、理解、并接受
3 3xx需要重定向,表示需要客户端采取进一步的操作才能完成请求
4 4xx客户端错误,表示了客户端看起来可能发生了错误,妨碍了服务器的处理
5 5xx服务器错误,表示服务器无法完成明显有效的请求

http请求方法:

 METHODS:    [ ‘ACL‘,     ‘BIND‘,     ‘CHECKOUT‘,     ‘CONNECT‘,     ‘COPY‘,     ‘DELETE‘,     ‘GET‘,     ‘HEAD‘,     ‘LINK‘,     ‘LOCK‘,     ‘M-SEARCH‘,     ‘MERGE‘,     ‘MKACTIVITY‘,     ‘MKCALENDAR‘,     ‘MKCOL‘,     ‘MOVE‘,     ‘NOTIFY‘,     ‘OPTIONS‘,     ‘PATCH‘,     ‘POST‘,     ‘PROPFIND‘,     ‘PROPPATCH‘,     ‘PURGE‘,     ‘PUT‘,     ‘REBIND‘,     ‘REPORT‘,     ‘SEARCH‘,     ‘SUBSCRIBE‘,     ‘TRACE‘,     ‘UNBIND‘,     ‘UNLINK‘,     ‘UNLOCK‘,     ‘UNSUBSCRIBE‘  ],
        

http状态响应码

STATUS_CODES:    { ‘100‘: ‘Continue‘,     ‘101‘: ‘Switching Protocols‘,     ‘102‘: ‘Processing‘,     ‘200‘: ‘OK‘,     ‘201‘: ‘Created‘,     ‘202‘: ‘Accepted‘,     ‘203‘: ‘Non-Authoritative Information‘,     ‘204‘: ‘No Content‘,     ‘205‘: ‘Reset Content‘,     ‘206‘: ‘Partial Content‘,     ‘207‘: ‘Multi-Status‘,     ‘208‘: ‘Already Reported‘,     ‘226‘: ‘IM Used‘,     ‘300‘: ‘Multiple Choices‘,     ‘301‘: ‘Moved Permanently‘,     ‘302‘: ‘Found‘,     ‘303‘: ‘See Other‘,     ‘304‘: ‘Not Modified‘,     ‘305‘: ‘Use Proxy‘,     ‘307‘: ‘Temporary Redirect‘,     ‘308‘: ‘Permanent Redirect‘,     ‘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‘: ‘Payload Too Large‘,     ‘414‘: ‘URI Too Long‘,     ‘415‘: ‘Unsupported Media Type‘,     ‘416‘: ‘Range Not Satisfiable‘,     ‘417‘: ‘Expectation Failed‘,     ‘418‘: ‘I\‘m a teapot‘,     ‘421‘: ‘Misdirected Request‘,     ‘422‘: ‘Unprocessable Entity‘,     ‘423‘: ‘Locked‘,     ‘424‘: ‘Failed Dependency‘,     ‘425‘: ‘Unordered Collection‘,     ‘426‘: ‘Upgrade Required‘,     ‘428‘: ‘Precondition Required‘,     ‘429‘: ‘Too Many Requests‘,     ‘431‘: ‘Request Header Fields Too Large‘,     ‘451‘: ‘Unavailable For Legal Reasons‘,     ‘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‘,     ‘507‘: ‘Insufficient Storage‘,     ‘508‘: ‘Loop Detected‘,     ‘509‘: ‘Bandwidth Limit Exceeded‘,     ‘510‘: ‘Not Extended‘,     ‘511‘: ‘Network Authentication Required‘  },

转自:
http://code.replays.net/201701/35986.html
https://zh.wikipedia.org/wiki/HTTP%E7%8A%B6%E6%80%81%E7%A0%81
原创粉丝点击