django-registration 激活 url 中的等号

发布于 2024-10-04 08:21:08 字数 225 浏览 3 评论 0原文

我正在使用 django-registration,由于某种原因,当它发送激活电子邮件时,它会在倒数第三个字符中插入等号,如下所示:

这意味着 URL 调度程序不会捕获该 URL(正则表达式为 ^activate/(?P\w+)/$。该 url 无论如何都是不正确的,因为它应该没有 有人知道

为什么会这样吗?

I am using django-registration and for some reason, when it sends the activation email, it inserts an equals sign in the third to last character as such: http://example.com/accounts/activate/a65b4aca5156211bc522e29f3e872290544d14=
e4/

This means the URL dispatcher does not catch the URL (the regex is ^activate/(?P<activation_key>\w+)/$. The url is incorrect anyway, as it should be without the equals sign.

Anybody know why this is happening?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

春风十里 2024-10-11 08:21:08

您的电子邮件客户端未正确读取引用可打印编码的消息。行末尾的 = 表示该行应与下一行无缝连接。

Your email client isn't reading the quoted-printable-encoded message properly. A = at the end of a line means that the line should be concatenated with the following line seamlessly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文