Google OAuth2 doesn't work in Python3.4.
I'm fix it ./socialauth/backends/ init _.py line 830
from
response = simplejson.loads(dsa_urlopen(request).read())
to
response = simplejson.loads(dsa_urlopen(request).read().decode('utf-8'))
and ./social_auth/backends/google.py line 234
from
return simplejson.loads(dsa_urlopen(request).read())
to
return simplejson.loads(dsa_urlopen(request).read().decode('utf-8'))
and add to import from urllib.request import Request, realy it's imported, but as OAuthRequest
Google OAuth2 doesn't work in Python3.4. I'm fix it ./socialauth/backends/ init _.py line 830 from
response = simplejson.loads(dsa_urlopen(request).read())
toresponse = simplejson.loads(dsa_urlopen(request).read().decode('utf-8'))
and ./social_auth/backends/google.py line 234 from
return simplejson.loads(dsa_urlopen(request).read())
toreturn simplejson.loads(dsa_urlopen(request).read().decode('utf-8'))
and add to importfrom urllib.request import Request
, realy it's imported, but as OAuthRequest