博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HTTP之Response状态码
阅读量:4983 次
发布时间:2019-06-12

本文共 1989 字,大约阅读时间需要 6 分钟。

Status-Code
- 1xx: Informational - Request received, continuing process- 2xx: Success - The action was successfully received,        understood, and accepted - 3xx: Redirection - Further action must 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 fulfill an apparently        valid request
Status-Code    =    Status-text            "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          | "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 Time-out          | "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"  : Requested range not satisfiable          | "417"  : Expectation Failed          | "500"  : Internal Server Error          | "501"  : Not Implemented          | "502"  : Bad Gateway          | "503"  : Service Unavailable          | "504"  : Gateway Time-out          | "505"  : HTTP Version not supported 详情:https://tools.ietf.org/html/rfc2616#section-10.1.1

转载于:https://www.cnblogs.com/xuepei/p/7698358.html

你可能感兴趣的文章
python的小技巧
查看>>
json数组转数组对象
查看>>
KMP算法详解 转帖
查看>>
Struts2+Hibernate+Spring+Webservice 项目从Tomcat到WebLogic遇到问题的解决方法
查看>>
C# 代理/委托 Delegate
查看>>
笨方法学python--参数,解包,变量
查看>>
android 加载本地图片与网络图片
查看>>
易经读书笔记17 泽雷随
查看>>
oracle正则表达式函数 匹配
查看>>
jmeter --自动化badboy脚本开发技术
查看>>
Linux驱动:LCD驱动测试
查看>>
Mark Down 尝试
查看>>
第三节:使用Log4net和过滤器记录异常信息,返回异常给前端
查看>>
fedora的选择
查看>>
AlphaPose论文笔记《RMPE: Regional Multi-person Pose Estimation》
查看>>
模糊查询和聚合函数
查看>>
[批处理]批量将文件名更名为其上级目录名
查看>>
如何查找ORACLE中的跟踪文件
查看>>
SQL Server将一列的多行内容拼接成一行
查看>>
Spring Controller RequestMapping
查看>>