Skip to Content
Menu
This question has been flagged
3 Replies
23240 Views

I got below error why? 


Invalid CSRF Token Odoo

Odoo URLs are CSRF-protected by default (when accessed with unsafe

HTTP methods). See

https://www.odoo.com/documentation/9.0/reference/http.html#csrf for

more details.

* if this endpoint is accessed through Odoo via py-QWeb form, embed a CSRF

token in the form, Tokens are available via `request.csrf_token()`

can be provided through a hidden input and must be POST-ed named

`csrf_token` e.g. in your form add:

<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>

* if the form is generated or posted in javascript, the token value is

available as `csrf_token` on `web.core` and as the `csrf_token`

value in the default js-qweb execution context

* if the form is accessed by an external third party (e.g. REST API

endpoint, payment gateway callback) you will need to disable CSRF

protection (and implement your own protection if necessary) by

passing the `csrf=False` parameter to the `route` decorator.

Avatar
Discard
Best Answer

Good afternoon.

I have the same problem.This happens when HTTPS is enabled. in port 80.

When you enter the access credentials the system goes down.I can only enter through port 8069.

Thank you.


Avatar
Discard
Best Answer

Hi Jérémy

How can i mark my route as supported 'non crsf' submit?

Avatar
Discard
Best Answer

because you need to add the csrf in your form

or mark your route as supported 'non crsf' submit


Exactly what is explain in your message...


What are you trying to do ? 

Avatar
Discard