zoukankan      html  css  js  c++  java
  • http request method and response codes

     ============================

    HTTP_Method
    ============================

    HTTP Method Action Examples
    GET Obtain information about a resource http://example.com/api/orders
    (retrieve order list)
    GET Obtain information about a resource http://example.com/api/orders/123
    (retrieve order #123)
    POST Create a new resource http://example.com/api/orders
    (create a new order, from data provided with the request)
    PATCH Update a resource PATCH 将来会比 PUT用的更多,PUT为完整代替, PATCH支持partial replace 
    PUT Replace a whole resource  http://example.com/api/orders/123
    (update order #123, from data provided with the request)
    DELETE Delete a resource http://example.com/api/orders/123
    (delete order #123)

    ============================
    HTTP_CODES
    ============================
     参见: http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
     1xx Informational
     2xx Success
     3xx Redirection
     4xx Client Error
     5xx Server Error

     具体有:

     100: 'Continue',
     101: 'Switching Protocols',
     200: 'OK',
     201: 'Created',
     202: 'Accepted',
     203: 'Non-Authoritative Information',
     204: 'No Content',
     205: 'Reset Content',
     206: 'Partial Content',
     300: 'Multiple Choices',
     301: 'Moved Permanently',
     302: 'Found',
     303: 'See Other',
     304: 'Not Modified',
     305: 'Use Proxy',
     306: '(Unused)',
     307: 'Temporary 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: 'Request Entity Too Large',
     414: 'Request-URI Too Long',
     415: 'Unsupported Media Type',
     416: 'Requested Range Not Satisfiable',
     417: 'Expectation Failed',
     418: "I'm a teapot",
     428: 'Precondition Required',
     429: 'Too Many Requests',
     431: 'Request Header Fields Too Large',
     500: 'Internal Server Error',
     501: 'Not Implemented',
     502: 'Bad Gateway',
     503: 'Service Unavailable',
     504: 'Gateway Timeout',
     505: 'HTTP Version Not Supported',
     511: 'Network Authentication Required'
     


  • 相关阅读:
    数学之美 系列十一 Google 阿卡 47 的制造者阿米特.辛格博士
    IE6 中的最大最小寬度和高度 css 高度 控制(兼容版本)
    数学之美 系列一 统计语言模型
    数学之美 系列八 贾里尼克的故事和现代语言处理
    数学之美 系列二 谈谈中文分词
    数学之美系列 4 怎样度量信息?
    带线的无限级下拉树列表完整示例篇
    实战篇通用的页面列表导出Excel控件
    CYQ.Data 轻量数据层之路 V3.0版本发布Xml绝对杀手(三十二)
    秋色园Blog 博客系列索引
  • 原文地址:https://www.cnblogs.com/harrychinese/p/http_request_method_and_response_codes.html
Copyright © 2011-2022 走看看