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've recently realised that I'm getting the following errors when trying to run tumblr-utils. I downloaded the latest version this morning to see if that fixed it but with no luck.
When I run the following command: python2 tumblr_backup.py -i --no-ssl-verify --save-video BLOGNAME I get 10 copies of the following error: <urlopen error [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:590)> getting https://api.tumblr.com/v2/blog/BLOGNAME.tumblr.com/posts?reblog_info=true&api_key=APIKEY&limit=1
I have tried with and without the -S and --no-ssl-verify flags.
I'm using Python 2.7.11.
The text was updated successfully, but these errors were encountered:
AFAIK this can happen on macOS when the version of OpenSSL linked to the system Python is too old to handle TLSv1.2. There are two ways you could work around this issue:
cebtenzzre
changed the title
SSL: TLSV1_ALERT_PROTOCOL_VERSION on _ssl.c:590
(macOS) Use of TLS <1.2 causes TLSV1_ALERT_PROTOCOL_VERSION / "tlsv1 alert protocol version"
Apr 24, 2021
cebtenzzre
changed the title
(macOS) Use of TLS <1.2 causes TLSV1_ALERT_PROTOCOL_VERSION / "tlsv1 alert protocol version"
Use of TLS <1.2 causes TLSV1_ALERT_PROTOCOL_VERSION / "tlsv1 alert protocol version"
Apr 25, 2021
This can actually occur on any platform if using old enough OpenSSL - but it is common on macOS because the system Python on older releases of OS X is linked to an old version of OpenSSL.
I've recently realised that I'm getting the following errors when trying to run
tumblr-utils
. I downloaded the latest version this morning to see if that fixed it but with no luck.When I run the following command:
python2 tumblr_backup.py -i --no-ssl-verify --save-video BLOGNAME
I get 10 copies of the following error:<urlopen error [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:590)> getting https://api.tumblr.com/v2/blog/BLOGNAME.tumblr.com/posts?reblog_info=true&api_key=APIKEY&limit=1
I have tried with and without the
-S
and--no-ssl-verify
flags.I'm using
Python 2.7.11
.The text was updated successfully, but these errors were encountered: