2016-04-13 23 views
9

Sto seguendo questo answer che è molto chiaro e utile, ho configurato tutte le impostazioni, ma dopo il login utilizzando gmail quando sono reindirizzato a localhost:8000/soc/complete/google-oauth2/?state=jAwzw... . Sto ottenendo questo erroreerrore di autenticazione social django utilizzando python-social-auth

HTTPError at /soc/complete/google-oauth2/ 
403 Client Error: Forbidden for url: https://www.googleapis.com/plus/v1/people/me?access_token=ya29..wwKoNcTfjGshqc8UYfdziBbgVtYP4bgBZ9ehrfsHJjfs-v6Cy2X3ULsdh_rJwbfApw&alt=json 
Request Method: GET 
Request URL: http://localhost:8000/soc/complete/google-oauth2/?state=jAwzw3EhdvFdUCv2DFia8fN4n7tUic6u&code=4/nvOb3r-U-ZXrxFCT1dSKcTE2wR8MbxhonRWX60cP4-0&authuser=0&session_state=e8244f9ad9dec2b21c83e2b153a6e9595ccefac4..e292&prompt=consent 
Django Version: 1.8.1 
Exception Type: HTTPError 
Exception Value:  
403 Client Error: Forbidden for url: https://www.googleapis.com/plus/v1/people/me?access_token=ya29..wwKoNcTfjGshqc8UYfdziBbgVtYP4bgBZ9ehrfsHJjfs-v6Cy2X3ULsdh_rJwbfApw&alt=json 
Exception Location: /usr/local/lib/python2.7/dist-packages/requests/models.py in raise_for_status, line 840 
Python Executable: /usr/bin/python 
Python Version: 2.7.6 
Python Path:  
['/home/aditya/django/myapp/socialapp', 
'/usr/lib/python2.7', 
'/usr/lib/python2.7/plat-x86_64-linux-gnu', 
'/usr/lib/python2.7/lib-tk', 
'/usr/lib/python2.7/lib-old', 
'/usr/lib/python2.7/lib-dynload', 
'/usr/local/lib/python2.7/dist-packages', 
'/usr/lib/python2.7/dist-packages', 
'/usr/lib/python2.7/dist-packages/PILcompat', 
'/usr/lib/python2.7/dist-packages/gtk-2.0', 
'/usr/lib/pymodules/python2.7', 
'/usr/lib/python2.7/dist-packages/ubuntu-sso-client'] 
Server time: Wed, 13 Apr 2016 11:33:21 +0000 

Non sono sicuro circa le SOCIAL_AUTH_PIPELINE impostazioni, ho appena li copiato, che sono come

SOCIAL_AUTH_PIPELINE = (
    'social.pipeline.user.create_user', 
    'social.pipeline.social_auth.social_user', 
    'social.pipeline.social_auth.associate_user', 
    'social.pipeline.social_auth.load_extra_data', 
    'social.pipeline.user.user_details', 
) 

Si può spiegare che cosa è il problema e come esattamente questo SOCIAL_AUTH_PIPELINE funziona?

+6

Avete attivato l'API Google+ su console delle API di Google? – ddalu5

+0

Ha funzionato, che perdere, grazie mille :) – user29578

+0

@ ddalu5 puoi aiutarti su questo http://stackoverflow.com/questions/36598489/user-not-created-by-logging-in-through-google-using -python-social-auth, per favore – user29578

risposta

12

il problema viene risolto, appena attivato l'API di Google+, grazie @ddalu5

+0

http://meta.stackexchange.com/questions/147531/how-mark-my-question-as- risposta su stackoverflow – ddalu5

+0

ho bisogno di attendere 2 giorni per contrassegnarlo risolto – user29578