-
I am testing a Flask app running locally. The front page is protected by Flask-Security. If I open While in the Chromium v135 the cookie list is empty. I have verified that "3rd-party cookies" and other privacy hardening options are disabled. After submitting the form, in Chromium I receive the error: {
"description": "The CSRF session token is missing.",
"error": 400
} The POST request appears to be correct: Relevant Flask settings:
Any ideas as to what is going on here? Why does it work correctly only in Firefox? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Interesting - the first thing I would double check is that in fact you are properly authenticating - since you are using forms - look VERY carefully at the response form to see if there are any errors (even CSRF errors should show up in the form). |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
__Host
prefix to blame. Live and learn.