在 Django 中使用 python-social-auth 重定向回网站时不可散列的类型

unhashable type when redirecting back to the website using python-social-auth in Django

我正在尝试使用 Social-auth-app-django 向网站添加社交媒体身份验证。

所以我为最流行的社交媒体网站(Facebook、Twitter、Google+)创建了不同的应用程序,并在那里设置了回调 url。

但是当我从 Facebook 重定向回网站时遇到错误:

    Internal Server Error: /oauth/complete/facebook/
Traceback (most recent call last):
  File "/usr/local/lib/python3.5/site-packages/django/core/handlers/exception.py", line 39, in inner
    response = get_response(request)
  File "/usr/local/lib/python3.5/site-packages/django/core/handlers/base.py", line 187, in _get_response
    response = self.process_exception_by_middleware(e, request)
  File "/usr/local/lib/python3.5/site-packages/django/core/handlers/base.py", line 185, in _get_response
    response = wrapped_callback(request, *callback_args, **callback_kwargs)
  File "/usr/local/lib/python3.5/site-packages/django/views/decorators/cache.py", line 57, in _wrapped_view_func
    response = view_func(request, *args, **kwargs)
  File "/usr/local/lib/python3.5/site-packages/django/views/decorators/csrf.py", line 58, in wrapped_view
    return view_func(*args, **kwargs)
  File "/usr/local/lib/python3.5/site-packages/social_django/utils.py", line 50, in wrapper
    return func(request, backend, *args, **kwargs)
  File "/usr/local/lib/python3.5/site-packages/social_django/views.py", line 32, in complete
    redirect_name=REDIRECT_FIELD_NAME, *args, **kwargs)
  File "/usr/local/lib/python3.5/site-packages/social_core/actions.py", line 41, in do_complete
    user = backend.complete(user=user, *args, **kwargs)
  File "/usr/local/lib/python3.5/site-packages/social_core/backends/base.py", line 40, in complete
    return self.auth_complete(*args, **kwargs)
  File "/usr/local/lib/python3.5/site-packages/social_core/utils.py", line 252, in wrapper
    return func(*args, **kwargs)
  File "/usr/local/lib/python3.5/site-packages/social_core/backends/facebook.py", line 110, in auth_complete
    return self.do_auth(access_token, response, *args, **kwargs)
  File "/usr/local/lib/python3.5/site-packages/social_core/backends/facebook.py", line 152, in do_auth
    return self.strategy.authenticate(*args, **kwargs)
  File "/usr/local/lib/python3.5/site-packages/social_django/strategy.py", line 115, in authenticate
    return authenticate(*args, **kwargs)
  File "/usr/local/lib/python3.5/site-packages/django/contrib/auth/__init__.py", line 74, in authenticate
    user = backend.authenticate(**credentials)
  File "/usr/local/lib/python3.5/site-packages/social_core/backends/base.py", line 80, in authenticate
    return self.pipeline(pipeline, *args, **kwargs)
  File "/usr/local/lib/python3.5/site-packages/social_core/backends/base.py", line 83, in pipeline
    out = self.run_pipeline(pipeline, pipeline_index, *args, **kwargs)
  File "/usr/local/lib/python3.5/site-packages/social_core/backends/base.py", line 105, in run_pipeline
    for idx, name in enumerate(pipeline[pipeline_index:]):
TypeError: unhashable type: 'slice'

下面是我如何配置的总结social_django

settings.py中:

INSTALLED_APPS = [
    'social_django',
    ...
]

AUTHENTICATION_BACKENDS = (
    'social_core.backends.google.GoogleOAuth2',
    'social_core.backends.twitter.TwitterOAuth',
    'social_core.backends.facebook.FacebookOAuth2',

    'django.contrib.auth.backends.ModelBackend',
)

SOCIAL_AUTH_FACEBOOK_KEY = 'xxx'
SOCIAL_AUTH_FACEBOOK_SECRET = 'xxx'

...

PIPELINE = {
    'PIPELINE_ENABLED': True,
    'STYLESHEETS': {...},
    'JAVASCRIPT': {...},
    'JS_COMPRESSOR': 'pipeline.compressors.NoopCompressor',
    'COMPILERS': (
        'pipeline.compilers.sass.SASSCompiler',
    )
}

之后,我显然迁移了数据库以创建新表。

请在下面找到 Djangosocial_django 的版本:

关于使用的管道,我正在使用 django-pipeline 但它只是用于将 SASS 文件编译为 CSS.

什么可能导致此错误?

尝试从 dict 对象获取切片时出现此错误。所以,是的,在回溯的最后一行,pipelines 是一个 dict 对象,当它应该是一个默认值为 sociel_core.pipeline.DEFAULT_AUTH_PIPELINE 的序列时,除非你的设置提供了 PIPELINE对象。

https://github.com/python-social-auth/social-core/blob/ccc50a5932b199a1a5209a08563c8997eb99391d/social_core/strategy.py#L99

https://github.com/python-social-auth/social-core/blob/ccc50a5932b199a1a5209a08563c8997eb99391d/social_core/pipeline/init.py#L1

因此我怀疑您的设置模块中可能有什么东西弄乱了这个应该是序列(列表、元组、自定义)而不是字典的 PIPELINE。

提示:安装 ipython 并使用 python manage.py shell 并检查以下内容。

>>> from social_core.strategy import BaseStrategy
>>> st = BaseStrategy()
>>> st.get_pipeline()
---> ???
>>> from django.conf import settings
>>> settings.PIPELINE
---> ???

希望对您有所帮助

将下面的管道添加到 settings.py 似乎解决了问题 (source):

SOCIAL_AUTH_PIPELINE = (
    'social_core.pipeline.social_auth.social_details',
    'social_core.pipeline.social_auth.social_uid',
    'social_core.pipeline.social_auth.social_user',
    'social_core.pipeline.user.get_username',
    'social_core.pipeline.user.create_user',
    'social_core.pipeline.social_auth.associate_user',
    'social_core.pipeline.social_auth.load_extra_data',
    'social_core.pipeline.user.user_details',
    'social_core.pipeline.social_auth.associate_by_email',
)