• 技术文章 >Python技术 >Python基础教程

    python如何使用requests检查请求

    小妮浅浅小妮浅浅2021-05-31 09:36:51原创2470

    1、说明

    当发出请求时,requests 库会在将请求实际发送到目标服务器之前准备该请求。 请求准备包括像验证头信息和序列化JSON内容等。

    2、实例

    可以通过访问 .request 来查看 PreparedRequest:

    >>> response = requests.post('https://httpbin.org/post', json={'key':'value'})
    >>> response.request.headers['Content-Type']
    'application/json'
    >>> response.request.url
    'https://httpbin.org/post'
    >>> response.request.body
    b'{"key": "value"}'

    通过检查 PreparedRequest,可以访问有关正在进行的请求的各种信息,例如有效负载,URL,头信息,身份验证等。

    以上就是python使用requests检查请求的方法,希望对大家有所帮助。更多Python学习指路:python基础教程

    本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

    专题推荐:python requests
    上一篇:python请求头如何自定义? 下一篇:python中contextmanager()的转换

    相关文章推荐

    • python可变参数的使用注意• python新式类是什么• python响应头部是什么• python请求头如何自定义?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网