Does the WR44 support TLS 1.2 HTTPS URLs using its Python urllib2 library or any other Python libraries?
Upgrade to the latest version of firmware v5.2.17.12
Here is a test you can do:
import urllib2
htmlresponse = urllib2.urlopen(‘https://www.ssllabs.com/ssltest/viewMyClient.html’)
html = htmlresponse.read()
print html
htmlresponse.close()
If you look at line 167 onward you will see that we only support v1.0 in pre 5.2.17.12 firmware but if you run it after upgrading to 5.2.17.12 you will see we now can do TLS1.2
1 Like