In angular documentation, it is mentioned that the angular httpclient
will automatically send the value of cookie XSRF-TOKEN
in the header X-
I suppose the correct method is withOptions
. I used withConfig and got error Property 'withConfig' does not exist on type 'typeof HttpClientXsrfModule'.
This is a typing issue in the documentation. You need to use "withOptions" instead HttpClientXsrfModule.withOptions({
cookieName: 'My-Xsrf-Cookie',
headerName: 'My-Xsrf-Header',
})