赞
踩
<?xml version="1.0" encoding="utf-8"?> <network-security-config> <base-config cleartextTrafficPermitted="true"> <trust-anchors> <certificates overridePins="true" src="system" /> <certificates overridePins="true" src="user" /> </trust-anchors> </base-config> </network-security-config> //清单文件配置 <application android:networkSecurityConfig="@xml/network_security_config_debug">
请求行: <method> <request-URL> <version>
头部: <headers>
主体: <entity-body>
POST /meme.php/home/user/login HTTP/1.1
Host: 114.215.86.90
Cache-Control: no-cache
Postman-Token: bd243d6b-da03-902f-0a2c-8e9377f6f6ed
Content-Type: application/x-www-form-urlencoded
tel=13637829200&password=123456
User-Agent
:产生请求的浏览器类型。Accept
:客户端可识别的响应内容类型列表;Accept-Language
:客户端可接受的自然语言;Accept-Encoding
:客户端可接受的编码压缩格式;Host
:请求的主机名,允许多个域名同处一个IP 地址,即虚拟主机;Connection
:连接方式(close 或 keep-alive
);Cookie
:存储于客户端扩展字段,向同一域名的服务端发送属于该域的cookie;状态行: <version> <status> <reason-phrase>
响应头部: <headers>
响应主体: <entity-body>
HTTP/1.1 200 OK
Date: Sat, 02 Jan 2016 13:20:55 GMT
Server: Apache/2.4.6 (CentOS) PHP/5.6.14
X-Powered-By: PHP/5.6.14
Content-Length: 78
Keep-Alive: timeout=5, max=100 Connection: Keep-Alive
Content-Type: application/json; charset=utf-8
{"status":202,"info":"\u6b64\u7528\u6237\u4e0d\u5b58\u5728\uff01","data":null}
Allow
服务器支持哪些请求方法(如GET、POST等)。Content-Encoding
文档的编码(Encode)方法。Content-Length
表示内容长度。只有当浏览器使用持久HTTP连接时才需要这个数据。Content-Type
表示后面的文档属于什么MIME类型。Server
服务器名字。Set-Cookie
设置和页面关联的Cookie。ETag
:被请求变量的实体值。ETag是一个可以与Web资源关联的记号(MD5值)。Cache-Control
:这个字段用于指定所有缓存机制在整个请求/响应链中必须服从的指令。状态码 | 类别 | 原因短语 |
---|---|---|
1XX | Informational(信息性状态码) | 接收的请求正在处理 |
2XX | Success(成功状态码) | 请求正常处理完毕 |
3XX | Redirection(重定向状态码) | 需要进行附加操作以完成请求 |
4XX | Client Error(客户端错误状态码) | 服务器无法处理请求 |
5XX | Server Error(服务器错误状态码) | 服务器处理请求出错 |
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。