gpt4 book ai didi

django - 使用 django-social-auth 和 Facebook 身份验证失败

转载 作者:行者123 更新时间:2023-12-01 06:38:09 27 4
gpt4 key购买 nike

我正在使用 django-social-auth 进行 Facebook 服务器端身份验证,但我收到了无法追踪的错误:AuthFailed('验证应用程序时出现错误')。

我在本地测试时没有收到此错误,并且我的 Facebook 应用程序站点 URL 指向 localhost。

但是,每次我将 Facebook 应用程序站点 URL 指向我的开发实例时,我都会遇到此错误——例如,https://dev.mydomain.com .

我无法找到可能导致 AuthFailed('There was an error authentication the app') 错误的列表。

另外,我还没有找到其他人成功使用了 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')),

谢谢你的帮助!

最佳答案

那个AuthFailed引发错误 here ,我会检查 client_id 的值, redirect_uriclient_secret使用上面几行并与您在 Facebook 上的应用程序配置进行比较。

关于django - 使用 django-social-auth 和 Facebook 身份验证失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13162071/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com