Ssl Error Occurs On One Computer But Not The Other?
I can't figure out why all of a sudden the below code that uses Asana's API generates the below SSL error. Something must have changed on my laptop, since it runs perfectly on my o
Solution 1:
We recently changed our SSL key in response to the Heartbleed bug you may have heard about. http://blog.asana.com/2014/04/heartbleed/
It looks like your laptop may not have the right SSL. See https://github.com/pypa/pip/issues/829 for discussion of a similar issue.
You should be able to check SSL version on the two machines with python -c "import ssl; print ssl.OPENSSL_VERSION"
. If indeed the laptop is behind, you'll need to update your python's SSL.
Post a Comment for "Ssl Error Occurs On One Computer But Not The Other?"