postman 成功,python requests 失败
postmanpost请求 成功,python requestspost请求 失败原来代码r2=requests.post(url=url,data=params,headers=headers, verify=False, timeout=15)return r2data参数改成json就可以了:r2=requests.post(url=url,json=params,headers=heade
·
postman post请求 成功,python requests post请求 失败
原来代码
r2=requests.post(url=url,data=params,headers=headers, verify=False, timeout=15)
return r2
data参数改成json就可以了:
r2=requests.post(url=url,json=params,headers=headers, verify=False, timeout=15)
return r2
更多推荐




所有评论(0)