You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
The text was updated successfully, but these errors were encountered:
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).
The text was updated successfully, but these errors were encountered: