用requests需要分清何时用data与json请求:
看请求头部参数
Post请求参数一部分在url里 另外一部分在body里面
第一种:application/json: {“key1“:”value1”,“keyt2":“value2"}
json=
第二种:application/x-www-form-urlencoded:name1= value1&name2=value2
data=
第三种:multipart/form-data:这一种是表单格式的 (文件上传 file=,图片上传等混合式)
data=
第四种: Content-Type:octets/stream (文件下载)
data=
第五种: text/xml
data=