Python中Requests模块发送post请求时json和data的区别

  • Post author:
  • Post last modified:2023年 2月 27日
  • Reading time:1 mins read

问题简答 带参数data发送请求时,Python是以发送表单的形式发送请求,我们在浏览器的请求头中可以看到Content-Type: application/x-www-form-urlencoded的字样,此时待发送的字典会被编码成`"a=1"的格式。 带参数json发送请求时,Python是发送json格式的字符串到服务器,可以在浏览器的请求头中看到Content-Type…