美文网首页
HTTP 分析

HTTP 分析

作者: 图拉汪 | 来源:发表于2018-06-27 14:33 被阅读11次

    General

    Request URL: 
    Request Method: GET
    Status Code: 200 OK
    Remote Address: 222.222.222.222:8080
    Referrer Policy: no-referrer-when-downgrade
    

    Referrer Policy: 从一个页面跳到另一个页面显示信息过滤规则

    Response Headers

    Access-Control-Allow-Credentials: true
    Access-Control-Allow-Headers: token,Keep-Alive,User-Agent,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
    Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
    Cache-Control: max-age=5
    Connection: keep-alive
    Content-Encoding: gzip
    Content-Type: application/json;charset=UTF-8
    Date: Wed, 27 Jun 2018 05:50:07 GMT
    Expires: Thu, 01 Jan 1970 00:00:00 GMT
    Server: nginx/1.10.1
    Transfer-Encoding: chunked
    Vary: Accept-Encoding
    

    Access-Control-Allow-Credentials: 允许跨域请求
    Access-Control-Allow-Headers:
    Transfer-Encoding: chunked: 分块编码
    Vary: Accept-Encoding: 告诉服务器缓存两种版本的资源:压缩和非压缩

    Request Headers

    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
    Accept-Encoding: gzip, deflate
    Accept-Language: zh-CN,zh;q=0.9
    Connection: keep-alive
    DNT: 1
    Host: api.ie-cloud.com
    Upgrade-Insecure-Requests: 1
    User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99 (Edition Baidu)
    

    Upgrade-Insecure-Requests: https页面访问http资源
    User-Agent: 用户代理

    相关文章

      网友评论

          本文标题:HTTP 分析

          本文链接:https://www.haomeiwen.com/subject/whmbyftx.html