3

django プロジェクトの Google Apps 認証に django-social-auth を使用しています。ドメインの Google API コンソールからクライアント ID と秘密鍵を取得しました。そして、次のように私のアプリに値を挿入しました:

    **settings.py**

      MIDDLEWARE_CLASSES = (
      'social_auth.middleware.SocialAuthExceptionMiddleware',
      )

     LOGIN_URL = '/login/google-oauth2/'
     LOGIN_REDIRECT_URL = '/profile'
     LOGIN_ERROR_URL = '/login-error/'

     AUTHENTICATION_BACKENDS = (
      'social_auth.backends.google.GoogleOAuth2Backend',
      'django.contrib.auth.backends.ModelBackend',
     )

    TEMPLATE_CONTEXT_PROCESSORS = (
     "django.contrib.auth.context_processors.auth",
     "social_auth.context_processors.social_auth_by_type_backends",
    )

    SOCIAL_AUTH_ENABLED_BACKENDS = ('google',)
    SOCIAL_AUTH_DEFAULT_USERNAME = 'new_social_auth_user'

    GOOGLE_OAUTH2_CLIENT_ID = '***.apps.googleusercontent.com'
    GOOGLE_OAUTH2_CLIENT_SECRET = '****'
    GOOGLE_WHITE_LISTED_DOMAINS = ['127.0.0.1:8000']

    SOCIAL_AUTH_COMPLETE_URL_NAME  = 'socialauth_complete'
    SOCIAL_AUTH_ASSOCIATE_URL_NAME = 'socialauth_associate_complete'
    SOCIAL_AUTH_RAISE_EXCEPTIONS = False
    SOCIAL_AUTH_PROCESS_EXCEPTIONS = 'social_auth.utils.log_exceptions_to_messages'  

    INSTALLED_APPS = (
            'social_auth', )

...

    **urls.py**

     from django.conf.urls import patterns, include, url
     from django.contrib import admin
     from django.views.generic import TemplateView
     from django.contrib.auth.views import logout
     admin.autodiscover()

     urlpatterns = patterns('',

     url(r'^admin/', include(admin.site.urls)),
     url(r'', include('social_auth.urls')),
     url(r'^$', TemplateView.as_view(template_name="login.html")),                 
     url(r'^logout/$', logout, {'next_page': '/'}, name='gauth_logout'),
     url(r'^profile/$', TemplateView.as_view(template_name="profile.html")),
     )

...

     **login.html**

     <p>Use your work email credentials to sign in to this application: 
     <a href="{% url 'socialauth_begin' 'google-oauth2' %}">Sign In</a>
      </p>

問題は、サインインをクリックすると、詳細を含むエラー: Invalid_client ページにリダイレクトされることです。

      Request Details
      cookie_policy_enforce=false
      scope=https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile
      response_type=code
      redirect_uri=http://127.0.0.1:8000/complete/google-oauth2/
      state=WZWyJgDRfeW4RneRynqSZ3nSy0Bzs0v6
      client_id=None

https://accounts.google.com/o/oauth2/auth?scope=https://www.googleapis.com/auth/userinfo.email+https://www.googleapis.com/auth/userinfo.profile&state= WZWyJgDRfeW4RneRynqSZ3nSy0Bzs0v6&redirect_uri=http://127.0.0.1:8000/complete/google-oauth2/&response_type=code&client_id=なし

プロジェクトで正しい client_id を提供したにもかかわらず、ページ (および URL からわかるように) は提供されていないと表示されます。URLに手動でプラグインすると、権限ページにリダイレクトされます。

また、許可を受け入れると、AuthCanceled at /complete/google-oauth2/エラーが発生します。プロジェクトが social_auth 設定を正しく読み取っていないということですか?

どんな助けでも大歓迎です。ありがとう。

4

1 に答える 1