I\'m trying to resolve a connection error thrown by AllAuth/Django 1.7 running on Google App Engine: I believe the error may be in the Sessions configuration but I\'ve not b
After doing some research, it seems AppEngine's problems were related to my installed version of requests.
I resolved this by pip uninstall requests (2.5.1), then pip install requests==2.3.
pip uninstall requests
pip install requests==2.3
Source