I\'ve read the docs and all the related questions on SO, but still Angular\'s XSRF mechanism isn\'t working for me: in no way I can make a POST request with the X-XSRF-TOKEN
You should put on the service on the frontend this { withCredentials: true }
{ withCredentials: true }
Ex:
this.http.put(url, body, { withCredentials: true });