4

django-social-auth を使用して Facebook サーバー側認証を行っていますが、追跡できないというエラーが表示されます: AuthFailed('アプリの認証中にエラーが発生しました')。

ローカルでテストしても、このエラーは表示されず、Facebook アプリ サイトの URL が localhost を指しています。

ただし、Facebook アプリ サイトの URL を開発インスタンス ( https://dev.mydomain.comなど) に指定するたびに、このエラーが発生します。

AuthFailed('アプリの認証中にエラーが発生しました') エラーの原因となる可能性のあるもののリストを見つけることができませんでした。

また、django-social-auth を正常に使用し、この問題を既に解決している他の人を見つけることができませんでした。

次のサイトで役立つ情報を見つけました: https://github.com/omab/django-social-auth/blob/master/doc/configuration.rst
http://django-social-auth.readthedocs.org/ en/latest/
https://developers.facebook.com/docs/technical-guides/login/ https://developers.facebook.com/docs/howtos/login/server-side-login/

最後に、ユーザーの名前、メール、写真を取得したいので、サーバー側の認証を行います。ただし、クライアント側の認証でそれができるのであれば、それを試すこともできると思います。

以下のコード...

settings.py で:

LOGIN_URL = '/account/login/'
LOGIN_REDIRECT_URL = '/'
LOGIN_ERROR_URL = '/account/login/' # added when trying to debug Facebook error

AUTHENTICATION_BACKENDS = (
    'social_auth.backends.facebook.FacebookBackend',
    'django.contrib.auth.backends.ModelBackend',
)

FACEBOOK_APP_ID = 'xxx'
FACEBOOK_API_SECRET = 'xxxxxx'
FACEBOOK_EXTENDED_PERMISSIONS = ['email']

SOCIAL_AUTH_CREATE_USERS = True
SOCIAL_AUTH_FORCE_RANDOM_USERNAME = False
SOCIAL_AUTH_DEFAULT_USERNAME = 'socialauth_user'
SOCIAL_AUTH_COMPLETE_URL_NAME = 'socialauth_complete'
SOCIAL_AUTH_ERROR_KEY = 'socialauth_error'
SOCIAL_AUTH_REDIRECT_IS_HTTPS = True    # force https in dev and production

# is SOCIAL_AUTH_LOGIN_REDIRECT_URL or SOCIAL_AUTH_BACKEND_ERROR_URL needed???

SOCIAL_AUTH_PIPELINE = (
    'social_auth.backends.pipeline.social.social_auth_user',
    'social_auth.backends.pipeline.associate.associate_by_email',
    'social_auth.backends.pipeline.misc.save_status_to_session',
    'apps.dsa_pipeline.redirect_to_form',
    'apps.dsa_pipeline.username',
    'apps.dsa_pipeline.phone',
    'social_auth.backends.pipeline.user.create_user',
    'social_auth.backends.pipeline.social.associate_user',
    'social_auth.backends.pipeline.social.load_extra_data',
    'social_auth.backends.pipeline.user.update_user_details',
    'apps.dsa_pipeline.profile',
) 

dsa_pipeline.py で:

from django.http import HttpResponseRedirect
from urllib2 import urlopen

def redirect_to_form(*args, **kwargs):
    if not kwargs['request'].session.get('saved_username') and kwargs.get('user') is None:
        return HttpResponseRedirect('/account/signup_dsa/')

def username(request, *args, **kwargs):
    if kwargs.get('user'):
        username = kwargs['user'].username
    else:
        username = request.session.get('saved_username')
    return {'username': username}

def phone(request, *args, **kwargs):
    if kwargs.get('phone'):
        phone = kwargs['phone'].phone
    else:
        phone = request.session.get('saved_phone')
    return {'phone': phone}

def profile(backend, details, response, social_user, uid, user, *args, **kwargs):
    profile = user.profile
    if not profile.phone:
        ph = kwargs.get('phone')
        if ph:
            profile.phone = ph
            profile.save()

urls.py で:

urlpatterns = patterns("",
    url(r"^$", direct_to_template, {"template": "homepage.html"}, name="home"),
    url(r"^admin/", include(admin.site.urls)),

    # profiles
    url(r'^', include("apps.profiles.urls")),
    url(r"^account/signup/$", SignupView.as_view(), name="account_signup"),
    url(r"^account/signup_dsa/$", SignupViewDSA.as_view(), name="account_signup_dsa"), 
    url(r"^account/", include("account.urls")),

    # Django Social Auth
    url(r'', include('social_auth.urls')),

助けてくれてありがとう!

4

1 に答える 1

0

そのAuthFailedエラーはここで発生します。上の数行で使用されている の値を確認し、Facebook のアプリ構成と比較しますclient_idredirect_uriclient_secret

于 2012-10-31T16:59:43.103 に答える