django CSRF_TRUSTED_ORIGINS 没有按预期工作
django CSRF_TRUSTED_ORIGINS not working as expected
我无法理解为什么来自第三方网站的 post 被拒绝,即使该网站已添加到 settings.py 中的 CSRF_TRUSTED_ORIGINS
列表中。我在 post 后收到 403 错误,表明 csrf 检查失败。我认为将站点添加到 CSRF_TRUSTED_ORIGINS
应该可以使站点免于进行 csrf 检查。为了接收来自外部来源的 post 请求,我还应该做些什么吗?我 运行 django 3.2
CSRF_TRUSTED_ORIGINS = ['site.lv']
请求headers:
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.9,lv;q=0.8,ru;q=0.7
Cache-Control: no-cache
Connection: keep-alive
Content-Length: 899
Content-Type: application/x-www-form-urlencoded
Host: cvcentrs-staging.herokuapp.com
Origin: https://www.site.lv
Pragma: no-cache
Referer: https://www.site.lv/
sec-ch-ua: " Not A;Brand";v="99", "Chromium";v="96", "Microsoft Edge";v="96"
sec-ch-ua-mobile: ?0
sec-ch-ua-platform: "Windows"
Sec-Fetch-Dest: document
Sec-Fetch-Mode: navigate
Sec-Fetch-Site: cross-site
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36 Edg/96.0.1054.62
这个假设是错误的:
I thought that adding the site to CSRF_TRUSTED_ORIGINS should make the site exempt from csrf checks.
将 URL 添加到 CSRF_TRUSTED_ORIGINS
只是允许来自外部域上的表单的 POST 请求所需要做的一件事。您还需要:
- 从外部页面进行 AJAX 调用以获取
csrf_token
,然后将令牌与您的 POST 请求一起发送。
- 设置 CORS(参见本文示例:https://www.stackhawk.com/blog/django-cors-guide/)。
从 Django 4.0 开始,您必须在 CSRF_TRUSTED_ORIGINS
中包含方案:
CSRF_TRUSTED_ORIGINS = ['https://site.lv', 'https://www.site.lv']
我无法理解为什么来自第三方网站的 post 被拒绝,即使该网站已添加到 settings.py 中的 CSRF_TRUSTED_ORIGINS
列表中。我在 post 后收到 403 错误,表明 csrf 检查失败。我认为将站点添加到 CSRF_TRUSTED_ORIGINS
应该可以使站点免于进行 csrf 检查。为了接收来自外部来源的 post 请求,我还应该做些什么吗?我 运行 django 3.2
CSRF_TRUSTED_ORIGINS = ['site.lv']
请求headers:
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.9,lv;q=0.8,ru;q=0.7
Cache-Control: no-cache
Connection: keep-alive
Content-Length: 899
Content-Type: application/x-www-form-urlencoded
Host: cvcentrs-staging.herokuapp.com
Origin: https://www.site.lv
Pragma: no-cache
Referer: https://www.site.lv/
sec-ch-ua: " Not A;Brand";v="99", "Chromium";v="96", "Microsoft Edge";v="96"
sec-ch-ua-mobile: ?0
sec-ch-ua-platform: "Windows"
Sec-Fetch-Dest: document
Sec-Fetch-Mode: navigate
Sec-Fetch-Site: cross-site
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36 Edg/96.0.1054.62
这个假设是错误的:
I thought that adding the site to CSRF_TRUSTED_ORIGINS should make the site exempt from csrf checks.
将 URL 添加到 CSRF_TRUSTED_ORIGINS
只是允许来自外部域上的表单的 POST 请求所需要做的一件事。您还需要:
- 从外部页面进行 AJAX 调用以获取
csrf_token
,然后将令牌与您的 POST 请求一起发送。 - 设置 CORS(参见本文示例:https://www.stackhawk.com/blog/django-cors-guide/)。
从 Django 4.0 开始,您必须在 CSRF_TRUSTED_ORIGINS
中包含方案:
CSRF_TRUSTED_ORIGINS = ['https://site.lv', 'https://www.site.lv']