[已解决]报错:Required request body is missing

问题代码:

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))
posted @ 2019-04-23 14:19  hank-li  阅读(16886)  评论(0)    收藏  举报