电子邮件确认错误重新验证

2024-10-01 11:32:06 发布

您现在位置:Python中文网/ 问答频道 /正文

我使用标准格式发送确认电子邮件: 从allauth.account.views将confirm_email导入allauthemailconfirmation

urlpatterns = [
    url(r'^admin/', admin.site.urls),
    url(r'^rest-auth/', include('rest_auth.urls')),
    url(r'^accounts/', include('allauth.urls')),
    url(r'^rest-auth/registration/account-confirm-email/(?P<key>\w+)/$', allauthemailconfirmation, name="account_confirm_email"),    
    url(r'^rest-auth/registration/', include('rest_auth.registration.urls')),

]

设置:

^{pr2}$

我正确地收到了一封电子邮件,但当您尝试链接时:

ImproperlyConfigured at /rest-auth/registration/account-confirm-email/MTU:1bn1OD:dQ_mCYi6Zpr8h2aKS9J9BvNdDjA/
TemplateResponseMixin requires either a definition of 'template_name' or an implementation of 'get_template_names()'

Tags: ofnameauthresturlincludeadminemail
1条回答
网友
1楼 · 发布于 2024-10-01 11:32:06

我想我发现了你的问题。在

此url:

/rest-auth/registration/account-confirm-email/MTU:1bn1OD:dQ_mCYi6Zpr8h2aKS9J9BvNdDjA/

与此模式不匹配:

^{pr2}$

但通过以下方式:

url(r'^rest-auth/registration/', include('rest_auth.registration.urls')),

如果您查看rest_auth.registration.urls的源代码,您将看到以下代码:

# This url is used by django-allauth and empty TemplateView is
# defined just to allow reverse() call inside app, for example when email
# with verification link is being sent, then it's required to render email
# content.

# account_confirm_email - You should override this view to handle it in
# your API client somehow and then, send post to /verify-email/ endpoint
# with proper key.
# If you don't want to use API on that step, then just use ConfirmEmailView
# view from:
# django-allauth https://github.com/pennersr/django-allauth/blob/master/allauth/account/views.py#L190
url(r'^account-confirm-email/(?P<key>[-:\w]+)/$', TemplateView.as_view(), name='account_confirm_email'),

所以,您应该覆盖这个视图,否则您将得到错误,如下所述:https://github.com/Tivix/django-rest-auth/issues/20

您确实尝试过覆盖视图,但是您的匹配模式是错误的,:char导致它失败,所以让我们尝试类似的方法

url(r'^rest-auth/registration/account-confirm-email/(?P<key>[-:\w]+)/$', allauthemailconfirmation, name="account_confirm_email"), 

相关部分是:(?P[-:\w]+)/$

相关问题 更多 >