requests post一个json数据

时间:2023-03-09 01:28:46
requests post一个json数据
# post一个json数据
import requests headers={ "Accept":"application/json, text/plain, */*",
"Accept-Encoding":"gzip, deflate",
"Accept-Language":"zh-CN,zh;q=0.8",
"appkey":"8dc7959eeee2792ac2eebb490e60deed",
"Connection":"keep-alive",
"Content-Length":"",
"Content-Type":"application/x-www-form-urlencoded",
"Host":"cq.gsxt.gov.cn",
"Origin":"http://cq.gsxt.gov.cn",
"Referer":"http://q.gsxt.gov.cn/xxgg/xxgg_list.html",
"User-Agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36",
"X-Requested-With":"XMLHttpRequest" } data = {
"json":'''{
"qc": {
"noticetype": "12"
},
"page": {
"pagesize":"10",
"currentpage":"1"
}
}'''
} url='http://cq.gsxt.gov.cn/gsxt/api/affichebase/queryList' response =requests.post(url,data = data, headers=headers)
# requests.post()
print(response.text)