问题代码:
res = requests.post(getXxxxList_url, headers=headers, data={})
对象网站:
- angular4
- apache
通过验证
(cookie,x-??-key)
payload: 空对象(实际登录在network里查看的)
{}
爬取结果:
Required request body is missing
解决方案:
import json
import requests # ...略... body = {}
res = requests.post(getXxxxList_url, headers=headers, data=json.dumps(body))