升级 Django 和 allauth 在 /accounts/profile/ 返回 KeyError

Posted

技术标签:

【中文标题】升级 Django 和 allauth 在 /accounts/profile/ 返回 KeyError【英文标题】:upgrade Django and allauth returning KeyError at /accounts/profile/ 【发布时间】:2016-05-24 21:11:12 【问题描述】:

我从 Django 1.7.1 升级到 1.9,同时升级了 allauth。升级后,我不得不修复许多错误,但这个我被卡住了。一切正常,但provider_login_url ..如果我从它正常呈现的模板中删除url,但我无法链接到url...

错误:

KeyError at /accounts/profile/

Django Version: 1.9.2
Exception Type: KeyError
Exception Value:    
'facebook'
/allauth/socialaccount/providers/__init__.py in by_id, line 20

Error during template rendering
allauth/templates/account/profile.html, error at line 68

68 .. <a href="% provider_login_url "facebook" process="connect" %" class="edit_profile_link">Connect this account with my Facebook account</a>

观看次数:

def profile(request):
    return render_to_response("account/profile.html",locals(),context_instance=RequestContext(request))

【问题讨论】:

您可能想尝试遍历 % get_providers as socialaccount_providers % 以查看 facebook 是否是一个选项。 如果我使用 % get_providers as socialaccount_providers % 我收到以下错误:第 6 行的块标记无效:'get_providers'。您是否忘记注册或加载此标签? 你的“account/profile.html”中有什么? 【参考方案1】:

在个人资料模板中,确保您有

% load socialaccount %

在设置中,确保你有

INSTALLED_APPS = (
  'allauth',
  'allauth.account',
  'allauth.socialaccount',
  'allauth.socialaccount.providers.facebook',
  ...
)

'facebook' 的 KeyError 可能是由于缺少上面的 facebook 提供程序造成的。

由于您从 1.7 升级了应用程序,请确保在设置中更改您的请求上下文处理器

TEMPLATE_CONTEXT_PROCESSORS = (
    ...
    # Required by `allauth` template tags
    'django.core.context_processors.request',
    ...
)

TEMPLATES = [
    
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [],
        'APP_DIRS': True,
        'OPTIONS': 
            'context_processors': [
                # Already defined Django-related contexts here

                # `allauth` needs this from django
                'django.template.context_processors.request',
            ],
        ,
    ,
]

【讨论】:

以上是关于升级 Django 和 allauth 在 /accounts/profile/ 返回 KeyError的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 django-allauth 访问用户名和配置文件

如何使用 django-allauth 访问用户名和配置文件

使用 django-allauth 和 django-rest 框架

如何让所有 django allauth 表单和对话框显示在弹出窗口中

使用 react-google-login 和 django-allauth 刷新令牌

Django django-allauth 实现第三方授权登陆平台(百度和github为例)