SSL error : routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

后端 未结 7 1986
梦毁少年i
梦毁少年i 2020-12-15 03:56

I have a large number of file download links in a txt file. I am trying to write a python script to download all the files at once, but I end up wi

7条回答
  •  不思量自难忘°
    2020-12-15 04:31

    The server certificate is invalid, either because it is signed by an invalid CA (internal CA, self signed,...), doesn't match the server's name or because it is expired.

    Either way, you need to find how to tell to the Python library that you are using that it must not stop at an invalid certificate if you really want to download files from this server.

提交回复
热议问题