bbolli / tumblr-utils

Utilities for dealing with Tumblr blogs, Tumblr backup
GNU General Public License v3.0
667 stars 124 forks source link

Use of TLS <1.2 causes TLSV1_ALERT_PROTOCOL_VERSION / "tlsv1 alert protocol version" #226

Open wonderingwombat opened 3 years ago

wonderingwombat commented 3 years ago

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.

cebtenzzre commented 3 years ago

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 commented 3 years ago

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.