response = requests.request("POST", url, timeout=20, data=payload, headers=headers, proxies=real_proxy,
                                        verify=False)

使用  verify=False   后 出现 waring  警告 

 

 

在 代码 的 最上方 加上 

# 禁用安全请求警告
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)

 

相关文章:

  • 2022-02-11
  • 2022-12-23
  • 2021-09-17
  • 2022-12-23
  • 2022-12-23
  • 2021-10-06
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-23
  • 2021-10-16
  • 2021-04-26
  • 2022-12-23
  • 2021-12-15
相关资源
相似解决方案