1.content_type 为 application/x-www-form-urlencoded
response = requests.post(url, data=form_data, headers=header)
form_data不要变为json字符串 需要字典格式
2.content_type 为application/json
import json
response = requests.post(url, data=json.dumps(form_data), headers=header)
form_data必须变为json字符串,否则报错
网友评论