django cloudflare csrf 403

网站套了cloudflare flare发现登录接口403了,csrf验证失败,

debug设置为False

详细报错如下:

Reason given for failure:

复制代码
    Referer checking failed - https://xxx/login does not match any trusted origins.
    

In general, this can occur when there is a genuine Cross Site Request Forgery, or when Django's CSRF mechanism has not been used correctly. For POST forms, you need to ensure:

  • Your browser is accepting cookies.

  • The view function passes a request to the template's render method.

  • In the template, there is a {% csrf_token %} template tag inside each POST form that targets an internal URL.

  • If you are not using CsrfViewMiddleware, then you must use csrf_protect on any views that use the csrf_token template tag, as well as those that accept the POST data.

  • The form has a valid CSRF token. After logging in in another browser tab or hitting the back button after a login, you may need to reload the page with the form, because the token is rotated after a login.

You're seeing the help section of this page because you have DEBUG = True in your Django settings file. Change that to False, and only the initial error message will be displayed.

You can customize this page using the CSRF_FAILURE_VIEW setting.

实际是跨域问题,具体为什么cloudflare会造成跨域不知道,解决方法:

Django配置

复制代码
CSRF_TRUSTED_ORIGINS=[“网站域名.com”]
相关推荐
不知名的老吴2 分钟前
返回多个值:让函数输出更丰富又不复杂
开发语言·python
larance5 分钟前
python包 解压修改后重新打成whl 包
开发语言·python
萤火阳光31 分钟前
43|Python 异步生态深度:aiohttp/aiomysql/aioredis 全链路异步实战
开发语言·网络·python
威联通安全存储39 分钟前
云原生数据湖:QuObjects 本地 S3 对象存储解析
python·云原生
chushiyunen42 分钟前
大模型评测、质量保证、datasets数据集、LmEval工具
开发语言·python
新知图书1 小时前
【图书推荐】《Python大数据分析师的算法手册》
python·数据分析
apcipot_rain1 小时前
Python 脚本生成目录树
开发语言·python
港股研究社2 小时前
广汽年报里的隐线:组织改革、生态协同与修复起点
python
Sirius.z2 小时前
第T11周:优化器对比实验
python
loriloy2 小时前
Python 环境管理工具 pyenv-win (windows版本)
windows·python·pyenv-win