AEM requires a valid CSRF token to be sent for authenticated POST, __PUT, or DELETE HTTP requests to both AEM Author and Publish services.
The CSRF token is not required for GET requests, or anonymous requests.
Hi @jayv25585659 if you are using POST request then you need to add CSRF-Token header, example
async function getCsrfToken() {
const response = await fetch('/libs/granite/csrf/token.json');
const json = await response.json();
return json.token;
}
const response = await fetch(SERVLE...
Hi @VishnuRa5
Please check below fpr folder structure and how to create symlinks
https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/implementing/content-delivery/validation-debug#flexible-mode-file-structure
Hi @agriselli
On Activation/Deactivation and Delete, all the files(including all the extension, selectors etc) at the same path are flushed/invalidate from dispatcher if flush agent is configured. Flush or Revalidate It depends on dispatcher config.
Which other files are deleted it depends on statf...
Hi @NageshRaja
You can set exact version using below -
sdkVersion : This property can be used to exactly specify the SDK version to be used for the analysis. If not set, the plugin will use the latest available SDK. The value for this property can also be specified via the command line by setting...