Hi,
I am trying to call odoo service using AngularJS. But calling the http://<servername>:<port>/web/session/authenticate (POST method), I got the error: Invalid CSRF Token
I read that I have to call the same url, use GET and X-CSRF-TOKEN=FETCH in the header in order to get the token then re-use it. But I have the same error.
Any idea on how I can solve "Invalid CSRF Token" ?
In Controller pass csrf=False
add in @http.route(['/your_url'], type='http', auth="public", website=True, csrf=False)