上传者: 38606206
|
上传时间: 2022-06-01 16:45:14
|
文件大小: 48KB
|
文件类型: PDF
Request Payload 和 Form Data 请求头上的参数差别在于:
Content-Type
Form Data
Post表单请求
代码示例
headers = {
"Content-Type": "application/x-www-form-urlencoded"
}
requests.post(url, data=data, headers=headers)
Request Payload
传递json数据
headers = {
"Content-Type": "application/json"
}
requests.post(url, data=jso