gTTS-token icon indicating copy to clipboard operation
gTTS-token copied to clipboard

SSL3_GET_SERVER_CERTIFICATE:certificate verify failed'

Open OsenLiu opened this issue 6 years ago • 0 comments

I got SSL3_GET_SERVER_CERTIFICATE:certificate verify failed' when I use gTTS. The error happened on line 58 of gtts_token.py. The app got SSL error in: response = requests.get("https://translate.google.com/"). I fixed it by disabling verify on request. response = requests.get("https://translate.google.com/", verify=False).

OsenLiu avatar Nov 15 '17 09:11 OsenLiu