学习笔记

Study notes

http应答报文介绍

云逐梦11312016-08-10 18:00:00返回列表

Http请求报文介绍 1.方法:GET/POST 2.URL: 相对路径 3.Host:目标主机 4.Accept:可接受的媒体类型 5.User-Agent:浏览器身份 6.Accept-Encoding:编码类型 7.Accept-Language:接受的语言

Http请求报文介绍

1.方法:GET/POST

2.URL: 相对路径

3.Host:目标主机

4.Accept:可接受的媒体类型

5.User-Agent:浏览器身份

6.Accept-Encoding:编码类型

7.Accept-Language:接受的语言

应答码

2xx:成功

200:OK

206 Partial Content

3xx:重定向

301 Moved Permancntly

303 see other

304 not modified

4xx:客户端错误

400 Bad Request

404 Not found

5xx:服务端错误

500 Internal server error

501 not implemented

server:应答服务器

content-type:应答的数据类型

text/

image/

audio/

video

*/*

last-modified:上一次修改时间

content-encoding:应答编码类型

content-length:应答的内容长度

测试http协议网站:http://httpbin.org 


返回
顶部