AEM CSRF Issues
We have a scenario where a servlet call is failing with
'com.adobe.granite.csrf.impl.CSRFFilter isValidRequest: empty CSRF token - rejecting'
Some research into this lead us to this stack overflow post where it is indicated that including granite.csrf.standalone clientlib in your code will handle the CSRF headers. After including this we are still seeing the same CSRF error. Appending '?debugClientLibs=true' to our URL and searching for granite.csrf.standalone, we can see it loaded in correctly. Yet the CSRF is still not handled.
We have a workaround by manually grabbing /libs/granite/csrf/token.json, and submitting that in a 'CSRF-Token' header with the request. My question is how we can get the granite CSRF library to automatically handle this? Has anyone else had success with this method?
AEM version: 2021.11.6023.20211111T113531Z-211000
