import requests
url = "xxxxxxxxxxx"
headers = {
'Referer': 'xxxxxxxxxxx',
'Content-Type': 'xxxxxxxxxxxxxxxxxxx',
'Host': 'xxxxxxxxxxx',
'Connection': 'Keep-Alive',
'Accept-Encoding': 'gzip',
'User-Agent': 'xxxx',
'Cookie': 'xxxxxxxxxxxxxxxx'
}
proxies = {
"http": "113.117.109.236:4537"
}
data_0 = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
data = dict([l.split("=", 1) for l in data_0.split("&")])
response = requests.post(url=url,headers=headers,data=data,proxies=proxies)
print(response.text)

相关文章:

  • 2021-12-25
  • 2022-12-23
  • 2022-12-23
  • 2021-11-20
  • 2021-05-05
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
猜你喜欢
  • 2021-11-15
  • 2022-02-24
  • 2021-09-15
  • 2022-12-23
  • 2021-12-23
相关资源
相似解决方案